diff options
author | ZyX <kp-pav@yandex.ru> | 2017-10-30 01:32:10 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-10-30 01:32:10 +0300 |
commit | a9b203d23fcc6ba8c4e298b8e082db990e1ec04f (patch) | |
tree | ca7c6ca700a8aeef99069f45c6355c48a2217783 /src/nvim/viml/parser/expressions.h | |
parent | b29a776550dadefefb891d01054ea21eb942bad1 (diff) | |
download | rneovim-a9b203d23fcc6ba8c4e298b8e082db990e1ec04f.tar.gz rneovim-a9b203d23fcc6ba8c4e298b8e082db990e1ec04f.tar.bz2 rneovim-a9b203d23fcc6ba8c4e298b8e082db990e1ec04f.zip |
*: Fix linter errors
Big function in expressions.c may be refactored, if I ever catch the idea how to
split it right.
Diffstat (limited to 'src/nvim/viml/parser/expressions.h')
-rw-r--r-- | src/nvim/viml/parser/expressions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/viml/parser/expressions.h b/src/nvim/viml/parser/expressions.h index d00d4855f3..668c2a4c84 100644 --- a/src/nvim/viml/parser/expressions.h +++ b/src/nvim/viml/parser/expressions.h @@ -189,7 +189,7 @@ typedef enum { kExprNodeCall, ///< Function call. /// Plain identifier: simple variable/function name /// - /// Looks like "string", "g:Foo", etc: consists from a single + /// Looks like "string", "g:Foo", etc: consists from a single /// kExprLexPlainIdentifier token. kExprNodePlainIdentifier, /// Plain dictionary key, for use with kExprNodeConcatOrSubscript |