summaryrefslogtreecommitdiff
path: root/core/normalize_path.rs
diff options
context:
space:
mode:
authorToan Nguyen <davidnguyen1501@gmail.com>2020-10-23 18:19:37 +0700
committerGitHub <noreply@github.com>2020-10-23 13:19:37 +0200
commit29e05bb014015085615f648a31f180ed9dd49e5a (patch)
tree6f3d292e27bcce984e0eb4828e030b2b877ee364 /core/normalize_path.rs
parentab898556a490d78d93e806ea3ee31147117102e3 (diff)
fix: typos in cli and core (#8082)
Diffstat (limited to 'core/normalize_path.rs')
-rw-r--r--core/normalize_path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/normalize_path.rs b/core/normalize_path.rs
index 0124aedc7..e444af991 100644
--- a/core/normalize_path.rs
+++ b/core/normalize_path.rs
@@ -4,7 +4,7 @@ use std::path::Component;
use std::path::Path;
use std::path::PathBuf;
-/// Normalize all itermediate components of the path (ie. remove "./" and "../" components).
+/// Normalize all intermediate components of the path (ie. remove "./" and "../" components).
/// Similar to `fs::canonicalize()` but doesn't resolve symlinks.
///
/// Taken from Cargo