diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-17 15:20:27 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-17 15:20:27 +0530 |
| commit | 0b463b075e221a779ee65d90f603447baf6fe2cb (patch) | |
| tree | df1c86ae3fa09eae3899d7cdf9bd7d9293d6cf8e /src/libstd/fs | |
| parent | 46200e5090c94f2ab1812a00c0fd778a6784e2e9 (diff) | |
| parent | fcf3f3209accbb9240ea44a24165e35e50eba1d2 (diff) | |
| download | rust-0b463b075e221a779ee65d90f603447baf6fe2cb.tar.gz rust-0b463b075e221a779ee65d90f603447baf6fe2cb.zip | |
Rollup merge of #23329 - jbcrail:rm-syntax-highlight, r=sanxiyn
As suggested by @steveklabnik in #23254, I removed the redundant Rust syntax highlighting from the documentation.
Diffstat (limited to 'src/libstd/fs')
| -rw-r--r-- | src/libstd/fs/mod.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd/fs/mod.rs b/src/libstd/fs/mod.rs index d072d1f102b..ba89b3a0ea6 100644 --- a/src/libstd/fs/mod.rs +++ b/src/libstd/fs/mod.rs @@ -473,7 +473,7 @@ pub fn rename<P: AsPath, Q: AsPath>(from: P, to: Q) -> io::Result<()> { /// /// # Examples /// -/// ```rust +/// ``` /// use std::fs; /// /// fs::copy("foo.txt", "bar.txt"); @@ -540,7 +540,7 @@ pub fn read_link<P: AsPath>(path: P) -> io::Result<PathBuf> { /// /// # Examples /// -/// ```rust +/// ``` /// use std::fs; /// /// fs::create_dir("/some/dir"); @@ -576,7 +576,7 @@ pub fn create_dir_all<P: AsPath>(path: P) -> io::Result<()> { /// /// # Examples /// -/// ```rust +/// ``` /// use std::fs; /// /// fs::remove_dir("/some/dir"); @@ -627,7 +627,7 @@ pub fn remove_dir_all<P: AsPath>(path: P) -> io::Result<()> { /// /// # Examples /// -/// ```rust +/// ``` /// use std::io; /// use std::fs::{self, PathExt, DirEntry}; /// use std::path::Path; |
