diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2024-09-23 07:14:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-23 07:14:10 -0700 |
commit | 34a40d3a50f71a4b5e06c36ed9f9110983984dbf (patch) | |
tree | 69f647ce5f5dba8f16cb2a55a2511b89df4db87e /src/nvim/generators/gen_options_enum.lua | |
parent | 47e6b2233feffc6e9d94f6086fb904eb5688fa25 (diff) | |
parent | 17027d64726864c7bbdba5bee004eb581ac4b54a (diff) | |
download | rneovim-34a40d3a50f71a4b5e06c36ed9f9110983984dbf.tar.gz rneovim-34a40d3a50f71a4b5e06c36ed9f9110983984dbf.tar.bz2 rneovim-34a40d3a50f71a4b5e06c36ed9f9110983984dbf.zip |
Merge #30435 refactor: rename "Dictionary" => "Dict"
Diffstat (limited to 'src/nvim/generators/gen_options_enum.lua')
-rw-r--r-- | src/nvim/generators/gen_options_enum.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/generators/gen_options_enum.lua b/src/nvim/generators/gen_options_enum.lua index 9a3953fcbc..d1419137d3 100644 --- a/src/nvim/generators/gen_options_enum.lua +++ b/src/nvim/generators/gen_options_enum.lua @@ -80,7 +80,7 @@ enum_w('') --- @type { [string]: string } local option_index = {} --- Generate option index enum and populate the `option_index` dictionary. +-- Generate option index enum and populate the `option_index` dict. enum_w('typedef enum {') enum_w(' kOptInvalid = -1,') |