Skip to content
This repository was archived by the owner on Jul 7, 2022. It is now read-only.

Commit a1f12b8

Browse files
authored
Fix syntax error in example (#26)
One of the examples missed a trailing comma. The syntax error would result in the error: ``` E5112: Error while creating lua chunk: init.lua:6: '}' expected (to close '{' at line 1) near 'enabled' ```
1 parent 6ca3a47 commit a1f12b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ require'lsp_extensions'.inlay_hints{
6666
highlight = "Comment",
6767
prefix = " > ",
6868
aligned = false,
69-
only_current_line = false
69+
only_current_line = false,
7070
enabled = { "ChainingHint" }
7171
}
7272
```

0 commit comments

Comments
 (0)