diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-06-21 15:40:40 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2023-06-22 10:18:24 +0200 |
commit | d931b829e92665fd7371b1bb49d22ce25b50a89a (patch) | |
tree | 198273d849b9ea0dbe14e7ba29291506d7ee3182 /runtime/doc/eval.txt | |
parent | 5c73b1bb4c876d207e868bffc9f741c2a60d4aaf (diff) | |
download | rneovim-d931b829e92665fd7371b1bb49d22ce25b50a89a.tar.gz rneovim-d931b829e92665fd7371b1bb49d22ce25b50a89a.tar.bz2 rneovim-d931b829e92665fd7371b1bb49d22ce25b50a89a.zip |
fix(docs): vimdoc syntax errors
Since https://github.com/neovim/tree-sitter-vimdoc/pull/97
the many cases of *.foo cause parser errors. But even before that, these
were erroneously highlighted as (argument), so fixing them is good.
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 5cee668b39..c1ea28c839 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -39,7 +39,7 @@ List An ordered sequence of items, see |List| for details. Dictionary An associative, unordered array: Each entry has a key and a value. |Dictionary| - Examples: + Examples: > {"blue": "#0000ff", "red": "#ff0000"} #{blue: "#0000ff", red: "#ff0000"} |