about summary refs log tree commit diff
path: root/library/std/src/fs
diff options
context:
space:
mode:
authorFrank Steffahn <frank.steffahn@stu.uni-kiel.de>2021-12-14 15:23:34 +0100
committerFrank Steffahn <frank.steffahn@stu.uni-kiel.de>2021-12-14 16:40:43 +0100
commita957cefda63c76c7a91a705f683be45c684d4303 (patch)
treeeb1e40688623beacc96cf77d3721d21f6ee97e86 /library/std/src/fs
parent404c8471aba60c2d837fa728e7c729a0f52d5830 (diff)
downloadrust-a957cefda63c76c7a91a705f683be45c684d4303.tar.gz
rust-a957cefda63c76c7a91a705f683be45c684d4303.zip
Fix a bunch of typos
Diffstat (limited to 'library/std/src/fs')
-rw-r--r--library/std/src/fs/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/fs/tests.rs b/library/std/src/fs/tests.rs
index 9a8f1e44f1f..2293fb6b558 100644
--- a/library/std/src/fs/tests.rs
+++ b/library/std/src/fs/tests.rs
@@ -1369,7 +1369,7 @@ fn symlink_hard_link() {
     // "hard_link" should appear as a symlink.
     assert!(check!(fs::symlink_metadata(tmpdir.join("hard_link"))).file_type().is_symlink());
 
-    // We sould be able to open "file" via any of the above names.
+    // We should be able to open "file" via any of the above names.
     let _ = check!(fs::File::open(tmpdir.join("file")));
     assert!(fs::File::open(tmpdir.join("file.renamed")).is_err());
     let _ = check!(fs::File::open(tmpdir.join("symlink")));