diff options
Diffstat (limited to 'core/normalize_path.rs')
-rw-r--r-- | core/normalize_path.rs | 2 |
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 |