1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-04-19 05:13:52 +02:00

Fix typo in syntax.rs (#7114)

seperator -> separator
This commit is contained in:
Ikko Eltociear Ashimine 2023-05-26 17:45:15 +09:00 committed by GitHub
parent a2e11af608
commit 349e2b5f0e
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -198,8 +198,8 @@ fn visit_map<M>(self, mut map: M) -> Result<Self::Value, M::Error>
Some((key, suffix)) if key == "suffix" => Ok(FileType::Suffix({
// FIXME: use `suffix.replace('/', std::path::MAIN_SEPARATOR_STR)`
// if MSRV is updated to 1.68
let mut seperator = [0; 1];
suffix.replace('/', std::path::MAIN_SEPARATOR.encode_utf8(&mut seperator))
let mut separator = [0; 1];
suffix.replace('/', std::path::MAIN_SEPARATOR.encode_utf8(&mut separator))
})),
Some((key, _value)) => Err(serde::de::Error::custom(format!(
"unknown key in `file-types` list: {}",