diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-12-01 16:53:48 -0500 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-12-01 16:53:48 -0500 |
| commit | 4fb296e07738ddce144a6f9c1097b46fca0eabc4 (patch) | |
| tree | 0a5ade9e76dbd443d020fa5d495f3289490948c8 /src/libstd | |
| parent | 0bfdedb0103e4fa6d89d7bc192dade6e8b26164a (diff) | |
| download | rust-4fb296e07738ddce144a6f9c1097b46fca0eabc4.tar.gz rust-4fb296e07738ddce144a6f9c1097b46fca0eabc4.zip | |
Small fix to EXE_SUFFIX and DLL_EXTENSION docs
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; |
