about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@gnome.org>2017-09-26 08:56:44 -0500
committerFederico Mena Quintero <federico@gnome.org>2017-09-26 08:59:34 -0500
commit4143422981e5be3593d3248e99cd503442aae698 (patch)
treef342e3ce039728b47ab90cfe93354ac9fd704b7e /src/libstd
parent91f6445b5956aff72755b84854a19d2921009e1e (diff)
downloadrust-4143422981e5be3593d3248e99cd503442aae698.tar.gz
rust-4143422981e5be3593d3248e99cd503442aae698.zip
os_str: Fix too-long lines
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/ffi/os_str.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd/ffi/os_str.rs b/src/libstd/ffi/os_str.rs
index 72b0e68a9b6..b6032f7c74c 100644
--- a/src/libstd/ffi/os_str.rs
+++ b/src/libstd/ffi/os_str.rs
@@ -59,8 +59,8 @@ use sys_common::{AsInner, IntoInner, FromInner};
 ///
 /// # Conversions
 ///
-/// See the [module's toplevel documentation about conversions][conversions] for a discussion on the traits which
-/// `OsString` implements for conversions from/to native representations.
+/// See the [module's toplevel documentation about conversions][conversions] for a discussion on
+/// the traits which `OsString` implements for conversions from/to native representations.
 ///
 /// [`OsStr`]: struct.OsStr.html
 /// [`From`]: ../convert/trait.From.html
@@ -87,8 +87,8 @@ pub struct OsString {
 /// `OsStr` is to [`OsString`] as [`String`] is to [`&str`]: the former in each pair are borrowed
 /// references; the latter are owned strings.
 ///
-/// See the [module's toplevel documentation about conversions][conversions] for a discussion on the traits which
-/// `OsStr` implements for conversions from/to native representations.
+/// See the [module's toplevel documentation about conversions][conversions] for a discussion on
+/// the traits which `OsStr` implements for conversions from/to native representations.
 ///
 /// [`OsString`]: struct.OsString.html
 /// [conversions]: index.html#conversions