about summary refs log tree commit diff
path: root/src/libstd/path.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-08-11 11:20:11 +0000
committerbors <bors@rust-lang.org>2015-08-11 11:20:11 +0000
commitc756526eb2aed91e96d2b5d9461898cb33565707 (patch)
tree3f609da8d07cf04617e277e56890b794e2345062 /src/libstd/path.rs
parent23f43896ce92830173e503eab8b2f7fba8137e37 (diff)
parentaebd6d5106243a926c39d02c84917b473b65dcc0 (diff)
downloadrust-c756526eb2aed91e96d2b5d9461898cb33565707.tar.gz
rust-c756526eb2aed91e96d2b5d9461898cb33565707.zip
Auto merge of #27658 - Manishearth:rollup, r=Manishearth
- Successful merges: #27542, #27571, #27572, #27577, #27611, #27612, #27617, #27633, #27647, #27648, #27651
- Failed merges: 
Diffstat (limited to 'src/libstd/path.rs')
-rw-r--r--src/libstd/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs
index c3a887cbcb8..5b456b580e5 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -965,7 +965,7 @@ impl PathBuf {
     ///
     /// * if `path` has a root but no prefix (e.g. `\windows`), it
     ///   replaces everything except for the prefix (if any) of `self`.
-    /// * if `path` has a prefix but no root, it replaces `self.
+    /// * if `path` has a prefix but no root, it replaces `self`.
     #[stable(feature = "rust1", since = "1.0.0")]
     pub fn push<P: AsRef<Path>>(&mut self, path: P) {
         let path = path.as_ref();