@@ -2059,31 +2059,31 @@ arbitrarily complex configurations through nesting.
2059
2059
2060
2060
The following configurations must be defined by the implementation:
2061
2061
2062
- * ` debug_assertions ` . Enabled by default when compiling without optimizations.
2062
+ * ` debug_assertions ` - Enabled by default when compiling without optimizations.
2063
2063
This can be used to enable extra debugging code in development but not in
2064
2064
production. For example, it controls the behavior of the standard library's
2065
2065
` 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" `
2067
2067
` "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
2069
2069
` "big" ` .
2070
- * ` target_env = ".." ` - an option provided by the compiler by default
2070
+ * ` target_env = ".." ` - An option provided by the compiler by default
2071
2071
describing the runtime environment of the target platform. Some examples of
2072
2072
this are ` musl ` for builds targeting the MUSL libc implementation, ` msvc ` for
2073
2073
Windows builds targeting MSVC, and ` gnu ` frequently the rest of the time. This
2074
2074
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.
2076
2076
` "unix" ` or ` "windows" ` . The value of this configuration option is defined
2077
2077
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
2079
2079
` "windows" ` , ` "macos" ` , ` "ios" ` , ` "linux" ` , ` "android" ` , ` "freebsd" ` , ` "dragonfly" ` ,
2080
2080
` "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
2082
2082
to ` "32" ` for targets with 32-bit pointers, and likewise set to ` "64" ` for
2083
2083
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 ` .
2087
2087
2088
2088
You can also set another attribute based on a ` cfg ` variable with ` cfg_attr ` :
2089
2089
0 commit comments