aboutsummaryrefslogtreecommitdiff
path: root/helix-loader/src
diff options
context:
space:
mode:
authorBen Lee-Cohen2022-04-18 04:12:47 +0000
committerGitHub2022-04-18 04:12:47 +0000
commit2bddec02e7a810b1d73c6179e3ad708dd59ea5a9 (patch)
tree3003521596f39e9501c722a4c2f943715ee6dc50 /helix-loader/src
parentc2a40d9d5229c701fa1a6d0fb80ce4ba86e8dc0c (diff)
Fixing (in two ways) a small typo (#2156)
Diffstat (limited to 'helix-loader/src')
-rw-r--r--helix-loader/src/config.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-loader/src/config.rs b/helix-loader/src/config.rs
index 3d71baed..5dc2d6b6 100644
--- a/helix-loader/src/config.rs
+++ b/helix-loader/src/config.rs
@@ -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.