]> git.lizzy.rs Git - rust.git/commitdiff
Fix link
authorGuillaume Gomez <guillaume1.gomez@gmail.com>
Sun, 12 Aug 2018 09:30:31 +0000 (11:30 +0200)
committerGuillaume Gomez <guillaume1.gomez@gmail.com>
Thu, 6 Sep 2018 21:32:30 +0000 (23:32 +0200)
src/libstd/ffi/os_str.rs

index 6bcd62dbd59c27052063bdc44389a7768b516afa..8ae5e20dac5aa669f37649c43e3490b723cc5cb7 100644 (file)
@@ -351,9 +351,6 @@ impl From<String> for OsString {
     /// Converts a [`String`] into a [`OsString`].
     ///
     /// The conversion copies the data, and includes an allocation on the heap.
-    ///
-    /// [`String`]: ../string/struct.String.html
-    /// [`OsString`]: struct.OsString.html
     fn from(s: String) -> OsString {
         OsString { inner: Buf::from_string(s) }
     }