aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/api/vim.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2023-06-19 14:40:53 +0200
committerbfredl <bjorn.linse@gmail.com>2023-06-19 14:43:36 +0200
commit0d149bb186390c3e40fb693050d0c30cddc8c7c5 (patch)
tree0f1ad54ef1342a3ac7d9482ed6f325cc75e573f3 /src/nvim/api/vim.c
parentdcf8a71b85d248a76f013afb67ff54c42697e6c1 (diff)
downloadrneovim-0d149bb186390c3e40fb693050d0c30cddc8c7c5.tar.gz
rneovim-0d149bb186390c3e40fb693050d0c30cddc8c7c5.tar.bz2
rneovim-0d149bb186390c3e40fb693050d0c30cddc8c7c5.zip
fix(docs): the runtimepath is not the runtime path
Diffstat (limited to 'src/nvim/api/vim.c')
-rw-r--r--src/nvim/api/vim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c
index 368bb866d7..a6f98a1915 100644
--- a/src/nvim/api/vim.c
+++ b/src/nvim/api/vim.c
@@ -487,7 +487,7 @@ Integer nvim_strwidth(String text, Error *err)
return (Integer)mb_string2cells(text.data);
}
-/// Gets the paths contained in 'runtimepath'.
+/// Gets the paths contained in |runtime-search-path|.
///
/// @return List of paths
ArrayOf(String) nvim_list_runtime_paths(Error *err)