diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-12-01 19:01:42 -0500 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-12-01 19:01:42 -0500 |
| commit | 9d05f56aab5dd1cfbe555874be9270acafe138de (patch) | |
| tree | 79507a26dc495385547c066946f3bc9cfd1b948f /src/libstd | |
| parent | da095eecc7518cfc763a869f197fb21dec525194 (diff) | |
| parent | 4fb296e07738ddce144a6f9c1097b46fca0eabc4 (diff) | |
| download | rust-9d05f56aab5dd1cfbe555874be9270acafe138de.tar.gz rust-9d05f56aab5dd1cfbe555874be9270acafe138de.zip | |
Rollup merge of #30150 - steveklabnik:fix_exe_suffix, r=alexcrichton
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/env.rs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/libstd/env.rs b/src/libstd/env.rs index a63c90c4a91..760733872ea 100644 --- a/src/libstd/env.rs +++ b/src/libstd/env.rs @@ -671,9 +671,9 @@ pub mod consts { /// /// Some possible values: /// - /// - .so - /// - .dylib - /// - .dll + /// - so + /// - dylib + /// - dll #[stable(feature = "env", since = "1.0.0")] pub const DLL_EXTENSION: &'static str = super::os::DLL_EXTENSION; @@ -682,7 +682,9 @@ pub mod consts { /// /// Some possible values: /// - /// - exe + /// - .exe + /// - .nexe + /// - .pexe /// - `""` (an empty string) #[stable(feature = "env", since = "1.0.0")] pub const EXE_SUFFIX: &'static str = super::os::EXE_SUFFIX; |
