diff options
Diffstat (limited to 'helix-core/src/transaction.rs')
-rw-r--r-- | helix-core/src/transaction.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/transaction.rs b/helix-core/src/transaction.rs index f3bb40fa..1619a4db 100644 --- a/helix-core/src/transaction.rs +++ b/helix-core/src/transaction.rs @@ -189,7 +189,7 @@ impl ChangeSet { /// provides a basic form of [operational /// transformation](https://en.wikipedia.org/wiki/Operational_transformation), /// and can be used for collaborative editing. - pub fn map(self, other: Self) -> Self { + pub fn map(self, _other: Self) -> Self { unimplemented!() } |