@@ -2055,31 +2055,31 @@ arbitrarily complex configurations through nesting.
2055
2055
2056
2056
The following configurations must be defined by the implementation:
2057
2057
2058
- * ` debug_assertions ` . Enabled by default when compiling without optimizations.
2058
+ * ` debug_assertions ` - Enabled by default when compiling without optimizations.
2059
2059
This can be used to enable extra debugging code in development but not in
2060
2060
production. For example, it controls the behavior of the standard library's
2061
2061
` debug_assert! ` macro.
2062
- * ` target_arch = "..." ` . Target CPU architecture, such as ` "x86" ` , ` "x86_64" `
2062
+ * ` target_arch = "..." ` - Target CPU architecture, such as ` "x86" ` , ` "x86_64" `
2063
2063
` "mips" ` , ` "powerpc" ` , ` "arm" ` , or ` "aarch64" ` .
2064
- * ` target_endian = "..." ` . Endianness of the target CPU, either ` "little" ` or
2064
+ * ` target_endian = "..." ` - Endianness of the target CPU, either ` "little" ` or
2065
2065
` "big" ` .
2066
- * ` target_env = ".." ` - an option provided by the compiler by default
2066
+ * ` target_env = ".." ` - An option provided by the compiler by default
2067
2067
describing the runtime environment of the target platform. Some examples of
2068
2068
this are ` musl ` for builds targeting the MUSL libc implementation, ` msvc ` for
2069
2069
Windows builds targeting MSVC, and ` gnu ` frequently the rest of the time. This
2070
2070
option may also be blank on some platforms.
2071
- * ` target_family = "..." ` . Operating system family of the target, e. g.
2071
+ * ` target_family = "..." ` - Operating system family of the target, e. g.
2072
2072
` "unix" ` or ` "windows" ` . The value of this configuration option is defined
2073
2073
as a configuration itself, like ` unix ` or ` windows ` .
2074
- * ` target_os = "..." ` . Operating system of the target, examples include
2074
+ * ` target_os = "..." ` - Operating system of the target, examples include
2075
2075
` "windows" ` , ` "macos" ` , ` "ios" ` , ` "linux" ` , ` "android" ` , ` "freebsd" ` , ` "dragonfly" ` ,
2076
2076
` "bitrig" ` , ` "openbsd" ` or ` "netbsd" ` .
2077
- * ` target_pointer_width = "..." ` . Target pointer width in bits. This is set
2077
+ * ` target_pointer_width = "..." ` - Target pointer width in bits. This is set
2078
2078
to ` "32" ` for targets with 32-bit pointers, and likewise set to ` "64" ` for
2079
2079
64-bit pointers.
2080
- * ` test ` . Enabled when compiling the test harness (using the ` --test ` flag).
2081
- * ` unix ` . See ` target_family ` .
2082
- * ` windows ` . See ` target_family ` .
2080
+ * ` test ` - Enabled when compiling the test harness (using the ` --test ` flag).
2081
+ * ` unix ` - See ` target_family ` .
2082
+ * ` windows ` - See ` target_family ` .
2083
2083
2084
2084
You can also set another attribute based on a ` cfg ` variable with ` cfg_attr ` :
2085
2085
0 commit comments