about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2018-02-05 01:20:56 +0800
committerkennytm <kennytm@gmail.com>2018-02-05 01:20:56 +0800
commit66d6c855bda49035cdf825625dbe423a2e1a2a6b (patch)
tree682fdec7ca3f3d0ff50c44957220fedb6e11ede9 /src/libstd
parentadb5849b7903767c488fe49866da1ba110ce21ef (diff)
parentf168700ba6257979dd90b20e0149e1ccf53590f0 (diff)
downloadrust-66d6c855bda49035cdf825625dbe423a2e1a2a6b.tar.gz
rust-66d6c855bda49035cdf825625dbe423a2e1a2a6b.zip
Rollup merge of #47999 - jaystrictor:master, r=Mark-Simulacrum
Remove 'the this' in doc comments.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/fs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/fs.rs b/src/libstd/fs.rs
index 594c9d0ff5a..5cea389531f 100644
--- a/src/libstd/fs.rs
+++ b/src/libstd/fs.rs
@@ -1023,7 +1023,7 @@ impl Metadata {
         self.0.accessed().map(FromInner::from_inner)
     }
 
-    /// Returns the creation time listed in the this metadata.
+    /// Returns the creation time listed in this metadata.
     ///
     /// The returned value corresponds to the `birthtime` field of `stat` on
     /// Unix platforms and the `ftCreationTime` field on Windows platforms.