Skip to content

Commit 84ea721

Browse files
committed
Format std::env::consts docstrings
This clarifies possible outputs the constants might be.
1 parent 16dd426 commit 84ea721

File tree

1 file changed

+37
-37
lines changed

1 file changed

+37
-37
lines changed

std/src/env.rs

+37-37
Original file line numberDiff line numberDiff line change
@@ -949,29 +949,29 @@ pub mod consts {
949949
///
950950
/// Some possible values:
951951
///
952-
/// - x86
953-
/// - x86_64
954-
/// - arm
955-
/// - aarch64
956-
/// - loongarch64
957-
/// - m68k
958-
/// - csky
959-
/// - mips
960-
/// - mips64
961-
/// - powerpc
962-
/// - powerpc64
963-
/// - riscv64
964-
/// - s390x
965-
/// - sparc64
952+
/// - `x86`
953+
/// - `x86_64`
954+
/// - `arm`
955+
/// - `aarch64`
956+
/// - `loongarch64`
957+
/// - `m68k`
958+
/// - `csky`
959+
/// - `mips`
960+
/// - `mips64`
961+
/// - `powerpc`
962+
/// - `powerpc64`
963+
/// - `riscv64`
964+
/// - `s390x`
965+
/// - `sparc64`
966966
#[stable(feature = "env", since = "1.0.0")]
967967
pub const ARCH: &str = env!("STD_ENV_ARCH");
968968

969969
/// The family of the operating system. Example value is `unix`.
970970
///
971971
/// Some possible values:
972972
///
973-
/// - unix
974-
/// - windows
973+
/// - `unix`
974+
/// - `windows`
975975
#[stable(feature = "env", since = "1.0.0")]
976976
pub const FAMILY: &str = os::FAMILY;
977977

@@ -980,16 +980,16 @@ pub mod consts {
980980
///
981981
/// Some possible values:
982982
///
983-
/// - linux
984-
/// - macos
985-
/// - ios
986-
/// - freebsd
987-
/// - dragonfly
988-
/// - netbsd
989-
/// - openbsd
990-
/// - solaris
991-
/// - android
992-
/// - windows
983+
/// - `linux`
984+
/// - `macos`
985+
/// - `ios`
986+
/// - `freebsd`
987+
/// - `dragonfly`
988+
/// - `netbsd`
989+
/// - `openbsd`
990+
/// - `solaris`
991+
/// - `android`
992+
/// - `windows`
993993
#[stable(feature = "env", since = "1.0.0")]
994994
pub const OS: &str = os::OS;
995995

@@ -998,7 +998,7 @@ pub mod consts {
998998
///
999999
/// Some possible values:
10001000
///
1001-
/// - lib
1001+
/// - `lib`
10021002
/// - `""` (an empty string)
10031003
#[stable(feature = "env", since = "1.0.0")]
10041004
pub const DLL_PREFIX: &str = os::DLL_PREFIX;
@@ -1008,9 +1008,9 @@ pub mod consts {
10081008
///
10091009
/// Some possible values:
10101010
///
1011-
/// - .so
1012-
/// - .dylib
1013-
/// - .dll
1011+
/// - `.so`
1012+
/// - `.dylib`
1013+
/// - `.dll`
10141014
#[stable(feature = "env", since = "1.0.0")]
10151015
pub const DLL_SUFFIX: &str = os::DLL_SUFFIX;
10161016

@@ -1019,9 +1019,9 @@ pub mod consts {
10191019
///
10201020
/// Some possible values:
10211021
///
1022-
/// - so
1023-
/// - dylib
1024-
/// - dll
1022+
/// - `so`
1023+
/// - `dylib`
1024+
/// - `dll`
10251025
#[stable(feature = "env", since = "1.0.0")]
10261026
pub const DLL_EXTENSION: &str = os::DLL_EXTENSION;
10271027

@@ -1030,9 +1030,9 @@ pub mod consts {
10301030
///
10311031
/// Some possible values:
10321032
///
1033-
/// - .exe
1034-
/// - .nexe
1035-
/// - .pexe
1033+
/// - `.exe`
1034+
/// - `.nexe`
1035+
/// - `.pexe`
10361036
/// - `""` (an empty string)
10371037
#[stable(feature = "env", since = "1.0.0")]
10381038
pub const EXE_SUFFIX: &str = os::EXE_SUFFIX;
@@ -1042,7 +1042,7 @@ pub mod consts {
10421042
///
10431043
/// Some possible values:
10441044
///
1045-
/// - exe
1045+
/// - `exe`
10461046
/// - `""` (an empty string)
10471047
#[stable(feature = "env", since = "1.0.0")]
10481048
pub const EXE_EXTENSION: &str = os::EXE_EXTENSION;

0 commit comments

Comments
 (0)