about summary refs log tree commit diff
path: root/src/libstd/path.rs
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2015-08-10 13:46:03 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2015-08-10 13:46:03 +0200
commit3b686a3ffb49a0d28bf3fee9cb922ff0a9f58c8a (patch)
treeed2638297b7796da4426137a218ab788f41125f0 /src/libstd/path.rs
parentfebdc3b201bcce1546c88e3be1b956d3f90d3059 (diff)
downloadrust-3b686a3ffb49a0d28bf3fee9cb922ff0a9f58c8a.tar.gz
rust-3b686a3ffb49a0d28bf3fee9cb922ff0a9f58c8a.zip
doc: add missing symbol
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 4a4db61c3b9..65d7b929c74 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();