Skip to content

Commit 9d05f56

Browse files
committed
Rollup merge of rust-lang#30150 - steveklabnik:fix_exe_suffix, r=alexcrichton
2 parents da095ee + 4fb296e commit 9d05f56

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/libstd/env.rs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -671,9 +671,9 @@ pub mod consts {
671671
///
672672
/// Some possible values:
673673
///
674-
/// - .so
675-
/// - .dylib
676-
/// - .dll
674+
/// - so
675+
/// - dylib
676+
/// - dll
677677
#[stable(feature = "env", since = "1.0.0")]
678678
pub const DLL_EXTENSION: &'static str = super::os::DLL_EXTENSION;
679679

@@ -682,7 +682,9 @@ pub mod consts {
682682
///
683683
/// Some possible values:
684684
///
685-
/// - exe
685+
/// - .exe
686+
/// - .nexe
687+
/// - .pexe
686688
/// - `""` (an empty string)
687689
#[stable(feature = "env", since = "1.0.0")]
688690
pub const EXE_SUFFIX: &'static str = super::os::EXE_SUFFIX;

0 commit comments

Comments
 (0)