Fixing (in two ways) a small typo (#2156)

This commit is contained in:
Ben Lee-Cohen 2022-04-18 00:12:47 -04:00 committed by GitHub
parent c2a40d9d52
commit 2bddec02e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
/// Default bultin-in languages.toml.
/// Default built-in languages.toml.
pub fn default_lang_config() -> toml::Value {
toml::from_slice(include_bytes!("../../languages.toml"))
.expect("Could not parse bultin-in languages.toml to valid toml")
.expect("Could not parse built-in languages.toml to valid toml")
}
/// User configured languages.toml file, merged with the default config.

View File

@ -101,7 +101,7 @@
]
)
; non-bultin command names
; non-builtin command names
(command name: (word) @function)
; derived from builtin -n (fish 3.2.2)