about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2021-05-15 13:29:48 +0200
committerGitHub <noreply@github.com>2021-05-15 13:29:48 +0200
commitc4f81c12eaec615addb36ebc6531dfcdca7fc915 (patch)
tree821f1af4a47e35fc244871943671aff697dd2f63 /library/std/src
parentb68d5433c91b6fff1d9c8d27f167ec0191d86709 (diff)
parent3c06f009854cab9ca8fda48f353c4e8750d51faf (diff)
downloadrust-c4f81c12eaec615addb36ebc6531dfcdca7fc915.tar.gz
rust-c4f81c12eaec615addb36ebc6531dfcdca7fc915.zip
Rollup merge of #85207 - andrewhalle:typo-rootseparator, r=kennytm
Fix typo in comment

missing space in "rootseparator"
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/path.rs b/library/std/src/path.rs
index ed0987064e8..cbe14767bd3 100644
--- a/library/std/src/path.rs
+++ b/library/std/src/path.rs
@@ -569,7 +569,7 @@ pub struct Components<'a> {
     prefix: Option<Prefix<'a>>,
 
     // true if path *physically* has a root separator; for most Windows
-    // prefixes, it may have a "logical" rootseparator for the purposes of
+    // prefixes, it may have a "logical" root separator for the purposes of
     // normalization, e.g.,  \\server\share == \\server\share\.
     has_physical_root: bool,