Fix typo on docs (#1201)

This commit is contained in:
George Rodrigues 2021-11-30 21:11:25 -03:00 committed by GitHub
parent c08d2fae58
commit 3e15aead4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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);