diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2021-05-15 13:29:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-15 13:29:48 +0200 |
| commit | c4f81c12eaec615addb36ebc6531dfcdca7fc915 (patch) | |
| tree | 821f1af4a47e35fc244871943671aff697dd2f63 /library/std/src | |
| parent | b68d5433c91b6fff1d9c8d27f167ec0191d86709 (diff) | |
| parent | 3c06f009854cab9ca8fda48f353c4e8750d51faf (diff) | |
| download | rust-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.rs | 2 |
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, |
