aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/types.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2020-09-10 19:58:09 +0200
committerGitHub <noreply@github.com>2020-09-10 19:58:09 +0200
commit7ba28b1aedcb88ef5643b32dc4a6bf92ac090fed (patch)
treeb0dfb89dedf36704bf292713485fc544fc0248a8 /src/nvim/types.h
parent5581ac88c60b0a3f7595088b30a8621f280b5e4c (diff)
parent5f3ddb195e10d11bf83818dad8b9d8822e51b4fa (diff)
downloadrneovim-7ba28b1aedcb88ef5643b32dc4a6bf92ac090fed.tar.gz
rneovim-7ba28b1aedcb88ef5643b32dc4a6bf92ac090fed.tar.bz2
rneovim-7ba28b1aedcb88ef5643b32dc4a6bf92ac090fed.zip
Merge pull request #12881 from bfredl/unexecute
lua: cleanup naming conventions of executor functions
Diffstat (limited to 'src/nvim/types.h')
-rw-r--r--src/nvim/types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/types.h b/src/nvim/types.h
index 87560a43da..91420c087f 100644
--- a/src/nvim/types.h
+++ b/src/nvim/types.h
@@ -16,7 +16,7 @@ typedef uint32_t u8char_T;
// Opaque handle used by API clients to refer to various objects in vim
typedef int handle_T;
-// Opaque handle to a lua value. Must be free with `executor_free_luaref` when
+// Opaque handle to a lua value. Must be free with `api_free_luaref` when
// not needed anymore! LUA_NOREF represents missing reference, i e to indicate
// absent callback etc.
typedef int LuaRef;