about summary refs log tree commit diff
path: root/src/libstd/path.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-04-11 13:20:56 -0700
committerbors <bors@rust-lang.org>2016-04-11 13:20:56 -0700
commitc0221c8897db309a79990367476177b1230bb264 (patch)
tree2f4d930c57ca7921d12a61046a5852a3d21d73ae /src/libstd/path.rs
parentb622c3e0856767d8e53cf141e2e0a7b6d72a198b (diff)
parent55e90bbd5eeaffb68f5d14b77c4a4a667d1f6877 (diff)
downloadrust-c0221c8897db309a79990367476177b1230bb264.tar.gz
rust-c0221c8897db309a79990367476177b1230bb264.zip
Auto merge of #32882 - steveklabnik:rollup, r=steveklabnik
Rollup of 9 pull requests

- Successful merges: #32768, #32802, #32815, #32823, #32849, #32854, #32862, #32870, #32873
- Failed merges:
Diffstat (limited to 'src/libstd/path.rs')
-rw-r--r--src/libstd/path.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs
index 5309cc3c858..f413bed86a8 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -466,7 +466,7 @@ enum State {
     Done = 3,
 }
 
-/// A Windows path prefix, e.g. `C:` or `\server\share`.
+/// A Windows path prefix, e.g. `C:` or `\\server\share`.
 ///
 /// Does not occur on Unix.
 #[stable(feature = "rust1", since = "1.0.0")]
@@ -528,7 +528,7 @@ impl<'a> Hash for PrefixComponent<'a> {
 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
 #[stable(feature = "rust1", since = "1.0.0")]
 pub enum Component<'a> {
-    /// A Windows path prefix, e.g. `C:` or `\server\share`.
+    /// A Windows path prefix, e.g. `C:` or `\\server\share`.
     ///
     /// Does not occur on Unix.
     #[stable(feature = "rust1", since = "1.0.0")]