Skip to content

Commit 01024c9

Browse files
committed
Auto merge of #28328 - tshepang:unusual, r=brson
2 parents 8e52875 + dc6c118 commit 01024c9

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/doc/reference.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -2059,31 +2059,31 @@ arbitrarily complex configurations through nesting.
20592059

20602060
The following configurations must be defined by the implementation:
20612061

2062-
* `debug_assertions`. Enabled by default when compiling without optimizations.
2062+
* `debug_assertions` - Enabled by default when compiling without optimizations.
20632063
This can be used to enable extra debugging code in development but not in
20642064
production. For example, it controls the behavior of the standard library's
20652065
`debug_assert!` macro.
2066-
* `target_arch = "..."`. Target CPU architecture, such as `"x86"`, `"x86_64"`
2066+
* `target_arch = "..."` - Target CPU architecture, such as `"x86"`, `"x86_64"`
20672067
`"mips"`, `"powerpc"`, `"arm"`, or `"aarch64"`.
2068-
* `target_endian = "..."`. Endianness of the target CPU, either `"little"` or
2068+
* `target_endian = "..."` - Endianness of the target CPU, either `"little"` or
20692069
`"big"`.
2070-
* `target_env = ".."` - an option provided by the compiler by default
2070+
* `target_env = ".."` - An option provided by the compiler by default
20712071
describing the runtime environment of the target platform. Some examples of
20722072
this are `musl` for builds targeting the MUSL libc implementation, `msvc` for
20732073
Windows builds targeting MSVC, and `gnu` frequently the rest of the time. This
20742074
option may also be blank on some platforms.
2075-
* `target_family = "..."`. Operating system family of the target, e. g.
2075+
* `target_family = "..."` - Operating system family of the target, e. g.
20762076
`"unix"` or `"windows"`. The value of this configuration option is defined
20772077
as a configuration itself, like `unix` or `windows`.
2078-
* `target_os = "..."`. Operating system of the target, examples include
2078+
* `target_os = "..."` - Operating system of the target, examples include
20792079
`"windows"`, `"macos"`, `"ios"`, `"linux"`, `"android"`, `"freebsd"`, `"dragonfly"`,
20802080
`"bitrig"` , `"openbsd"` or `"netbsd"`.
2081-
* `target_pointer_width = "..."`. Target pointer width in bits. This is set
2081+
* `target_pointer_width = "..."` - Target pointer width in bits. This is set
20822082
to `"32"` for targets with 32-bit pointers, and likewise set to `"64"` for
20832083
64-bit pointers.
2084-
* `test`. Enabled when compiling the test harness (using the `--test` flag).
2085-
* `unix`. See `target_family`.
2086-
* `windows`. See `target_family`.
2084+
* `test` - Enabled when compiling the test harness (using the `--test` flag).
2085+
* `unix` - See `target_family`.
2086+
* `windows` - See `target_family`.
20872087

20882088
You can also set another attribute based on a `cfg` variable with `cfg_attr`:
20892089

0 commit comments

Comments
 (0)