diff options
author | Pascal Kuthe | 2023-04-07 12:50:47 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2023-05-18 06:16:50 +0000 |
commit | 6842fd4c36c5855023b007a36b0b5c8bd965d8de (patch) | |
tree | 4af253f71b873eadc23bc33bfc69d88024bdef46 /helix-view/src/editor.rs | |
parent | 28b730381cc93d06e5a090b8734505edbebb1af4 (diff) |
clarify comments about completion savepoints
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
Diffstat (limited to 'helix-view/src/editor.rs')
-rw-r--r-- | helix-view/src/editor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 43227c5f..9546d460 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -911,7 +911,7 @@ pub enum CompleteAction { trigger_offset: usize, changes: Vec<Change>, }, - /// A savepoint of the currently active completion. The completion + /// A savepoint of the currently selected completion. The savepoint /// MUST be restored before sending any event to the LSP Selected { savepoint: Arc<SavePoint> }, } |