Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing (in two ways) a small typo #2156

Merged
merged 1 commit into from
Apr 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions helix-loader/src/config.rs
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion runtime/queries/fish/highlights.scm
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
]
)

; non-bultin command names
; non-builtin command names
(command name: (word) @function)

; derived from builtin -n (fish 3.2.2)
Expand Down