Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-core/src/transaction.rs')
| -rw-r--r-- | helix-core/src/transaction.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-core/src/transaction.rs b/helix-core/src/transaction.rs index 21b72b5f..41faf8f7 100644 --- a/helix-core/src/transaction.rs +++ b/helix-core/src/transaction.rs @@ -520,7 +520,7 @@ impl ChangeSet { pos } - pub fn changes_iter(&self) -> ChangeIterator { + pub fn changes_iter(&self) -> ChangeIterator<'_> { ChangeIterator::new(self) } } @@ -753,7 +753,7 @@ impl Transaction { }) } - pub fn changes_iter(&self) -> ChangeIterator { + pub fn changes_iter(&self) -> ChangeIterator<'_> { self.changes.changes_iter() } } |