@@ -618,7 +618,7 @@ pub mod consts {
618
618
#[ stable( feature = "env" , since = "1.0.0" ) ]
619
619
pub const ARCH : & ' static str = super :: arch:: ARCH ;
620
620
621
- /// The family of the operating system. In this case, `unix`.
621
+ /// The family of the operating system. Example value is `unix`.
622
622
///
623
623
/// Some possible values:
624
624
///
@@ -627,8 +627,8 @@ pub mod consts {
627
627
#[ stable( feature = "env" , since = "1.0.0" ) ]
628
628
pub const FAMILY : & ' static str = super :: os:: FAMILY ;
629
629
630
- /// A string describing the specific operating system in use: in this
631
- /// case, `linux`.
630
+ /// A string describing the specific operating system in use.
631
+ /// Example value is `linux`.
632
632
///
633
633
/// Some possible values:
634
634
///
@@ -647,7 +647,7 @@ pub mod consts {
647
647
pub const OS : & ' static str = super :: os:: OS ;
648
648
649
649
/// Specifies the filename prefix used for shared libraries on this
650
- /// platform: in this case, `lib`.
650
+ /// platform. Example value is `lib`.
651
651
///
652
652
/// Some possible values:
653
653
///
@@ -657,7 +657,7 @@ pub mod consts {
657
657
pub const DLL_PREFIX : & ' static str = super :: os:: DLL_PREFIX ;
658
658
659
659
/// Specifies the filename suffix used for shared libraries on this
660
- /// platform: in this case, `.so`.
660
+ /// platform. Example value is `.so`.
661
661
///
662
662
/// Some possible values:
663
663
///
@@ -668,7 +668,7 @@ pub mod consts {
668
668
pub const DLL_SUFFIX : & ' static str = super :: os:: DLL_SUFFIX ;
669
669
670
670
/// Specifies the file extension used for shared libraries on this
671
- /// platform that goes after the dot: in this case, `so`.
671
+ /// platform that goes after the dot. Example value is `so`.
672
672
///
673
673
/// Some possible values:
674
674
///
@@ -679,7 +679,7 @@ pub mod consts {
679
679
pub const DLL_EXTENSION : & ' static str = super :: os:: DLL_EXTENSION ;
680
680
681
681
/// Specifies the filename suffix used for executable binaries on this
682
- /// platform: in this case, the empty string .
682
+ /// platform. Example value is `.exe` .
683
683
///
684
684
/// Some possible values:
685
685
///
@@ -691,7 +691,7 @@ pub mod consts {
691
691
pub const EXE_SUFFIX : & ' static str = super :: os:: EXE_SUFFIX ;
692
692
693
693
/// Specifies the file extension, if any, used for executable binaries
694
- /// on this platform: in this case, the empty string .
694
+ /// on this platform. Example value is `exe` .
695
695
///
696
696
/// Some possible values:
697
697
///
0 commit comments