diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2023-06-22 04:09:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 04:09:14 -0700 |
commit | 2f17ef1fc4b96cf1106fd95ba090d34a2e4b977b (patch) | |
tree | 3c51771cc20d3206f1f1cf657ccb4cbb5ee4ecf1 /src/nvim/eval/decode.c | |
parent | 4e6356559c8cd44dbcaa765d1f39e176064526ec (diff) | |
download | rneovim-2f17ef1fc4b96cf1106fd95ba090d34a2e4b977b.tar.gz rneovim-2f17ef1fc4b96cf1106fd95ba090d34a2e4b977b.tar.bz2 rneovim-2f17ef1fc4b96cf1106fd95ba090d34a2e4b977b.zip |
fix(messages): use "Vimscript" instead of "VimL" #24111
followup to #24109
fix #16150
Diffstat (limited to 'src/nvim/eval/decode.c')
-rw-r--r-- | src/nvim/eval/decode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/eval/decode.c b/src/nvim/eval/decode.c index acef37e0e8..70a629ea91 100644 --- a/src/nvim/eval/decode.c +++ b/src/nvim/eval/decode.c @@ -227,7 +227,7 @@ static inline int json_decoder_pop(ValuesStackItem obj, ValuesStack *const stack /// /// @param[out] ret_tv Address where new special dictionary is saved. /// @param[in] len Expected number of items to be populated before list -/// becomes accessible from VimL. It is still valid to +/// becomes accessible from Vimscript. It is still valid to /// underpopulate a list, value only controls how many elements /// will be allocated in advance. @see ListLenSpecials. /// @@ -645,7 +645,7 @@ parse_json_number_ret: } \ } while (0) -/// Convert JSON string into VimL object +/// Convert JSON string into Vimscript object /// /// @param[in] buf String to convert. UTF-8 encoding is assumed. /// @param[in] buf_len Length of the string. @@ -921,7 +921,7 @@ json_decode_string_ret: #undef DICT_LEN -/// Convert msgpack object to a VimL one +/// Convert msgpack object to a Vimscript one int msgpack_to_vim(const msgpack_object mobj, typval_T *const rettv) FUNC_ATTR_NONNULL_ALL FUNC_ATTR_WARN_UNUSED_RESULT { |