Skip to content

Commit

Permalink
Refer to other docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mmvanheusden committed Aug 16, 2024
1 parent e0fe4a7 commit 028104e
Showing 1 changed file with 3 additions and 23 deletions.
26 changes: 3 additions & 23 deletions std/src/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -983,6 +983,7 @@ pub mod consts {
/// * `"unix"`
/// * `"windows"`
/// * `"itron"`
/// * `"wasm"`
/// * `""`
///
/// </details>
Expand Down Expand Up @@ -1041,18 +1042,7 @@ pub mod consts {
/// Specifies the filename suffix, if any, used for shared libraries on this platform.
/// An example value may be: `".so"`, `".elf"`, or `".dll"`.
///
/// <details><summary>Full list of possible values</summary>
///
/// * `".so"`
/// * `".dylib"`
/// * `".dll"`
/// * `".sgxs"`
/// * `".a"`
/// * `".elf"`
/// * `".wasm"`
/// * `""` (an empty string)
///
/// </details>
/// The possible values are identical to those of [`DLL_EXTENSION`], but with the leading period included.
#[stable(feature = "env", since = "1.0.0")]
pub const DLL_SUFFIX: &str = os::DLL_SUFFIX;

Expand All @@ -1077,17 +1067,7 @@ pub mod consts {
/// Specifies the filename suffix, if any, used for executable binaries on this platform.
/// An example value may be: `".exe"`, or `".efi"`.
///
/// <details><summary>Full list of possible values</summary>
///
/// * `".exe"`
/// * `".efi"`
/// * `".js"`
/// * `".sgxs"`
/// * `".elf"`
/// * `".wasm"`
/// * `""` (an empty string)
///
/// </details>
/// The possible values are identical to those of [`EXE_EXTENSION`], but with the leading period included.
#[stable(feature = "env", since = "1.0.0")]
pub const EXE_SUFFIX: &str = os::EXE_SUFFIX;

Expand Down

0 comments on commit 028104e

Please # to comment.