diff options
author | Lewis Russell <lewis6991@gmail.com> | 2023-07-17 15:13:54 +0100 |
---|---|---|
committer | Lewis Russell <lewis6991@gmail.com> | 2023-07-17 16:25:29 +0100 |
commit | c2d7c2826ca77b0ca31bec511fdcdf1e4abaf946 (patch) | |
tree | 72bda675f18c6a1d27f6dc3cf196e7d1fae680fb /runtime/lua/vim/_meta/json.lua | |
parent | 0ac3c4d6314df5fe40571a83e157a425ab7ce16d (diff) | |
download | rneovim-c2d7c2826ca77b0ca31bec511fdcdf1e4abaf946.tar.gz rneovim-c2d7c2826ca77b0ca31bec511fdcdf1e4abaf946.tar.bz2 rneovim-c2d7c2826ca77b0ca31bec511fdcdf1e4abaf946.zip |
docs(lua): change *lua-foo* -> *vim.foo*
Diffstat (limited to 'runtime/lua/vim/_meta/json.lua')
-rw-r--r-- | runtime/lua/vim/_meta/json.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/lua/vim/_meta/json.lua b/runtime/lua/vim/_meta/json.lua index 15e81d5004..2580b56870 100644 --- a/runtime/lua/vim/_meta/json.lua +++ b/runtime/lua/vim/_meta/json.lua @@ -1,8 +1,8 @@ --- @meta ---- @defgroup lua-json +--- @defgroup vim.json --- ---- @brief The \*vim.json\* module provides encoding and decoding of Lua objects to and +--- This module provides encoding and decoding of Lua objects to and --- from JSON-encoded strings. Supports |vim.NIL| and |vim.empty_dict()|. --- Decodes (or "unpacks") the JSON-encoded {str} to a Lua object. |