@@ -181,7 +181,7 @@ fn _var(key: &OsStr) -> Result<String, VarError> {
181
181
}
182
182
183
183
/// Fetches the environment variable `key` from the current process, returning
184
- /// None if the variable isn't set.
184
+ /// ` None` if the variable isn't set.
185
185
///
186
186
/// # Examples
187
187
///
@@ -617,7 +617,7 @@ pub mod consts {
617
617
#[ stable( feature = "env" , since = "1.0.0" ) ]
618
618
pub const ARCH : & ' static str = super :: arch:: ARCH ;
619
619
620
- /// The family of the operating system. In this case, `unix`.
620
+ /// The family of the operating system. Example value is `unix`.
621
621
///
622
622
/// Some possible values:
623
623
///
@@ -626,8 +626,8 @@ pub mod consts {
626
626
#[ stable( feature = "env" , since = "1.0.0" ) ]
627
627
pub const FAMILY : & ' static str = super :: os:: FAMILY ;
628
628
629
- /// A string describing the specific operating system in use: in this
630
- /// case, `linux`.
629
+ /// A string describing the specific operating system in use.
630
+ /// Example value is `linux`.
631
631
///
632
632
/// Some possible values:
633
633
///
@@ -646,7 +646,7 @@ pub mod consts {
646
646
pub const OS : & ' static str = super :: os:: OS ;
647
647
648
648
/// Specifies the filename prefix used for shared libraries on this
649
- /// platform: in this case, `lib`.
649
+ /// platform. Example value is `lib`.
650
650
///
651
651
/// Some possible values:
652
652
///
@@ -656,7 +656,7 @@ pub mod consts {
656
656
pub const DLL_PREFIX : & ' static str = super :: os:: DLL_PREFIX ;
657
657
658
658
/// Specifies the filename suffix used for shared libraries on this
659
- /// platform: in this case, `.so`.
659
+ /// platform. Example value is `.so`.
660
660
///
661
661
/// Some possible values:
662
662
///
@@ -667,7 +667,7 @@ pub mod consts {
667
667
pub const DLL_SUFFIX : & ' static str = super :: os:: DLL_SUFFIX ;
668
668
669
669
/// Specifies the file extension used for shared libraries on this
670
- /// platform that goes after the dot: in this case, `so`.
670
+ /// platform that goes after the dot. Example value is `so`.
671
671
///
672
672
/// Some possible values:
673
673
///
@@ -678,7 +678,7 @@ pub mod consts {
678
678
pub const DLL_EXTENSION : & ' static str = super :: os:: DLL_EXTENSION ;
679
679
680
680
/// Specifies the filename suffix used for executable binaries on this
681
- /// platform: in this case, the empty string .
681
+ /// platform. Example value is `.exe` .
682
682
///
683
683
/// Some possible values:
684
684
///
@@ -690,7 +690,7 @@ pub mod consts {
690
690
pub const EXE_SUFFIX : & ' static str = super :: os:: EXE_SUFFIX ;
691
691
692
692
/// Specifies the file extension, if any, used for executable binaries
693
- /// on this platform: in this case, the empty string .
693
+ /// on this platform. Example value is `exe` .
694
694
///
695
695
/// Some possible values:
696
696
///
0 commit comments