summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2021-12-31 16:22:46 +0900
committerGitHub <noreply@github.com>2021-12-31 08:22:46 +0100
commitc5a5fc28206df73e963967f27eacd58c1236e278 (patch)
treedc2d6a47269b6a743a696c3a5c3b4546a74b3eed
parent23764675c0f11ed4148c2e13997d658e622c7fab (diff)
chore(directory): fix typo (#3364)
seperators -> separators
-rw-r--r--src/modules/directory.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/directory.rs b/src/modules/directory.rs
index d0ea73159..50cbfe4ea 100644
--- a/src/modules/directory.rs
+++ b/src/modules/directory.rs
@@ -327,7 +327,7 @@ fn to_fish_style(pwd_dir_length: usize, dir_string: String, truncated_dir_string
.join("/")
}
-/// Convert the path seperators in `path` to the OS specific path seperators.
+/// Convert the path separators in `path` to the OS specific path separators.
fn convert_path_sep(path: &str) -> String {
return PathBuf::from_slash(path).to_string_lossy().into_owned();
}