From 3c92d4f1956d67cd7b07d62e80aa19c77b9289eb Mon Sep 17 00:00:00 2001 From: Myk Date: Sat, 23 Jul 2022 16:35:40 -0700 Subject: [PATCH] Fix typo --- library/lua/helpdb.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/lua/helpdb.lua b/library/lua/helpdb.lua index 8b35b0d25..5e0f49920 100644 --- a/library/lua/helpdb.lua +++ b/library/lua/helpdb.lua @@ -636,7 +636,7 @@ end function is_builtin(command) ensure_db() return entrydb[command] and - get_db_property(entry_name, 'entry_types')[ENTRY_TYPES.BUILTIN] + get_db_property(command, 'entry_types')[ENTRY_TYPES.BUILTIN] end ---------------------------------------------------------------------------