diff --git a/src/modules/swift.rs b/src/modules/swift.rs index 61141050..1ed11a09 100644 --- a/src/modules/swift.rs +++ b/src/modules/swift.rs @@ -60,10 +60,10 @@ pub fn module<'a>(context: &'a Context) -> Option> { fn parse_swift_version(swift_version: &str) -> Option { // split into ["Apple", "Swift", "version", "5.2.2", ...] or // ["Swift", "version", "5.3-dev", ...] - let mut splited = swift_version.split_whitespace(); - let _ = splited.position(|t| t == "version")?; + let mut split = swift_version.split_whitespace(); + let _ = split.position(|t| t == "version")?; // return "5.2.2" or "5.3-dev" - let version = splited.next()?; + let version = split.next()?; Some(version.to_string()) } diff --git a/typos.toml b/typos.toml index bc511ced..50bf0fee 100644 --- a/typos.toml +++ b/typos.toml @@ -7,5 +7,6 @@ esy = "esy" numver = "numver" afe = "afe" extentions = "extentions" # TODO: should be extensions +worl = "worl" # typo on purpose [files] extend-exclude = ["CHANGELOG.md", "docs/*"]