mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-17 17:35:16 +01:00
fix spelling
This commit is contained in:
parent
049232439a
commit
5b4869a940
1 changed files with 2 additions and 2 deletions
|
@ -450,11 +450,11 @@ mod tests {
|
||||||
// This is uncommon, but valid
|
// This is uncommon, but valid
|
||||||
check!(r"C:foo\bar", "C:foo#bar");
|
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");
|
||||||
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
|
// absolute path that begins with RootDir, and the two slashes get combined together as
|
||||||
// a single path separator during normalization.
|
// a single path separator during normalization.
|
||||||
//check!("//server/share/path", "##server#share#path");
|
//check!("//server/share/path", "##server#share#path");
|
||||||
|
|
Loading…
Reference in a new issue