diff --git a/extensions/completion/src/lib.rs b/extensions/completion/src/lib.rs index d6cdbb9d7..09b09c479 100644 --- a/extensions/completion/src/lib.rs +++ b/extensions/completion/src/lib.rs @@ -55,7 +55,7 @@ impl Into for CompletionPhase { } } -/// A virtual table that generates a sequence of integers +/// A virtual table that generates candidate completions #[derive(Debug, Default, VTabModuleDerive)] struct CompletionVTab {} @@ -126,7 +126,7 @@ impl VTabModule for CompletionVTab { } } -/// The cursor for iterating over the generated sequence +/// The cursor for iterating over the completions #[derive(Debug, Default)] struct CompletionCursor { line: String,