From 5b4869a940ecba3afef71894b019507d9d271474 Mon Sep 17 00:00:00 2001 From: a1346054 <36859588+a1346054@users.noreply.github.com> Date: Sat, 14 Aug 2021 09:46:53 +0000 Subject: [PATCH] fix spelling --- src/exec/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/exec/mod.rs b/src/exec/mod.rs index d1f7d74..a364e86 100644 --- a/src/exec/mod.rs +++ b/src/exec/mod.rs @@ -450,11 +450,11 @@ mod tests { // This is uncommon, but valid check!(r"C:foo\bar", "C:foo#bar"); - // forward slashses should get normalized and interpreted as separators + // forward slashes should get normalized and interpreted as separators check!("C:/foo/bar", "C:#foo#bar"); check!("C:foo/bar", "C:foo#bar"); - // Rust does not intrepret "//server/share" as a UNC path, but rather as a normal + // Rust does not interpret "//server/share" as a UNC path, but rather as a normal // absolute path that begins with RootDir, and the two slashes get combined together as // a single path separator during normalization. //check!("//server/share/path", "##server#share#path");