Fix typo in locals.lua: vaild -> valid

This commit is contained in:
Stephan Seitz 2021-11-01 14:21:00 +01:00
parent 82afae9c9c
commit 05380d700b

View file

@ -29,7 +29,7 @@ end
-- @param node_text: the node text to use
-- @returns a string id
function M.get_definition_id(scope, node_text)
-- Add a vaild starting character in case node text doesn't start with a valid one.
-- Add a valid starting character in case node text doesn't start with a valid one.
return table.concat({ "k", node_text or "", scope:range() }, "_")
end