diff options
author | George Rodrigues | 2021-12-01 00:11:25 +0000 |
---|---|---|
committer | GitHub | 2021-12-01 00:11:25 +0000 |
commit | 3e15aead4adc5139417230d15b38112cdc4f7043 (patch) | |
tree | 35f8ec51b9a3ce04a4ee5eda145dcecc83e6a00c /helix-core | |
parent | c08d2fae587a0a5dd2a1e2e44a1f385d142c9d59 (diff) |
Fix typo on docs (#1201)
Diffstat (limited to 'helix-core')
-rw-r--r-- | helix-core/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index de7e95c1..8ef41ef3 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -158,7 +158,7 @@ mod merge_toml_tests { "; let base: Value = toml::from_slice(include_bytes!("../../languages.toml")) - .expect("Couldn't parse built-in langauges config"); + .expect("Couldn't parse built-in languages config"); let user: Value = toml::from_str(USER).unwrap(); let merged = merge_toml_values(base, user); |