Unnamed repository; edit this file 'description' to name the repository.
Resolve unclosed HTML tag doc warning
Michael Davis 2024-07-28
parent 981e5cd · commit af2ac55
-rw-r--r--helix-lsp-types/src/completion.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-lsp-types/src/completion.rs b/helix-lsp-types/src/completion.rs
index f6bf3c15..2555228a 100644
--- a/helix-lsp-types/src/completion.rs
+++ b/helix-lsp-types/src/completion.rs
@@ -159,7 +159,7 @@ impl InsertTextMode {
/// they match the indentation up to the cursor of the line for
/// which the item is accepted.
///
- /// Consider a line like this: <2tabs><cursor><3tabs>foo. Accepting a
+ /// Consider a line like this: `<2tabs><cursor><3tabs>foo`. Accepting a
/// multi line completion item is indented using 2 tabs all
/// following lines inserted will be indented using 2 tabs as well.
pub const ADJUST_INDENTATION: InsertTextMode = InsertTextMode(2);