typos: fix simple typos in comments

This commit is contained in:
Ben Boeckel 2025-03-21 21:14:44 +01:00
parent 5f38dffb6a
commit b21618c1a9
3 changed files with 3 additions and 3 deletions

View file

@ -694,7 +694,7 @@ function M.write_lockfile(verbose, skip_langs)
for _, v in ipairs(sorted_parsers) do
if not vim.tbl_contains(skip_langs, v.name) then
-- I'm sure this can be done in aync way with iter_cmd
-- I'm sure this can be done in async way with iter_cmd
local sha ---@type string
if v.parser.install_info.branch then
sha = vim.split(

View file

@ -1,6 +1,6 @@
; inherits: typescript
; Sub-language delimeters
; Sub-language delimiters
(glimmer_opening_tag) @tag.builtin
(glimmer_closing_tag) @tag.builtin

View file

@ -357,7 +357,7 @@
((identifier) @variable.builtin
(#eq? @variable.builtin "cls"))
; After @type.builtin bacause builtins (such as `type`) are valid as attribute name
; After @type.builtin because builtins (such as `type`) are valid as attribute name
((attribute
attribute: (identifier) @variable.member)
(#lua-match? @variable.member "^[%l_].*$"))