Skip to content

Commit

Permalink
Rollup merge of rust-lang#32870 - jethrogb:patch-1, r=GuillaumeGomez
Browse files Browse the repository at this point in the history
Fix Windows UNC paths in std::path docs
  • Loading branch information
steveklabnik committed Apr 11, 2016
2 parents c584283 + 0fa0a6b commit 24c5c27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/path.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down Expand Up @@ -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")]
Expand Down

0 comments on commit 24c5c27

Please sign in to comment.