From 1aa4a578276b2a3f7c47dcea7ad75786982550d4 Mon Sep 17 00:00:00 2001 From: Jason Shin Date: Thu, 1 Aug 2019 13:55:01 +1000 Subject: [PATCH] Update src/libstd/path.rs to shorten the explanation for .to_str validation step Co-Authored-By: Mazdak Farrokhzad --- src/libstd/path.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/path.rs b/src/libstd/path.rs index 21c4968bfbe8b..56fde77daac58 100644 --- a/src/libstd/path.rs +++ b/src/libstd/path.rs @@ -1819,7 +1819,7 @@ impl Path { /// Yields a [`&str`] slice if the `Path` is valid unicode. /// /// This conversion may entail doing a check for UTF-8 validity. - /// Also it it worthwhile noting that validation is performed because Non-UTF-8 strings are + /// Note that validation is performed because non-UTF-8 strings are /// perfectly valid for some OS. /// /// [`&str`]: ../primitive.str.html