@@ -359,7 +359,7 @@ impl OsString {
359359
360360#[ stable( feature = "rust1" , since = "1.0.0" ) ]
361361impl From < String > for OsString {
362- /// Converts a [`String`] into a [`OsString`].
362+ /// Converts a [`String`] into an [`OsString`].
363363 ///
364364 /// This conversion does not allocate or copy memory.
365365 #[ inline]
@@ -880,7 +880,7 @@ impl From<Box<OsStr>> for OsString {
880880
881881#[ stable( feature = "box_from_os_string" , since = "1.20.0" ) ]
882882impl From < OsString > for Box < OsStr > {
883- /// Converts a [`OsString`] into a [`Box`]`<OsStr>` without copying or allocating.
883+ /// Converts an [`OsString`] into a [`Box`]`<OsStr>` without copying or allocating.
884884 #[ inline]
885885 fn from ( s : OsString ) -> Box < OsStr > {
886886 s. into_boxed_os_str ( )
@@ -897,7 +897,7 @@ impl Clone for Box<OsStr> {
897897
898898#[ stable( feature = "shared_from_slice2" , since = "1.24.0" ) ]
899899impl From < OsString > for Arc < OsStr > {
900- /// Converts a [`OsString`] into a [`Arc`]`<OsStr>` without copying or allocating.
900+ /// Converts an [`OsString`] into a [`Arc`]`<OsStr>` without copying or allocating.
901901 #[ inline]
902902 fn from ( s : OsString ) -> Arc < OsStr > {
903903 let arc = s. inner . into_arc ( ) ;
@@ -916,7 +916,7 @@ impl From<&OsStr> for Arc<OsStr> {
916916
917917#[ stable( feature = "shared_from_slice2" , since = "1.24.0" ) ]
918918impl From < OsString > for Rc < OsStr > {
919- /// Converts a [`OsString`] into a [`Rc`]`<OsStr>` without copying or allocating.
919+ /// Converts an [`OsString`] into a [`Rc`]`<OsStr>` without copying or allocating.
920920 #[ inline]
921921 fn from ( s : OsString ) -> Rc < OsStr > {
922922 let rc = s. inner . into_rc ( ) ;
0 commit comments