Skip to content

Commit dc6c118

Browse files
committed
reference: using periods here is unusual
1 parent 2f77a59 commit dc6c118

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/doc/reference.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2055,31 +2055,31 @@ arbitrarily complex configurations through nesting.
20552055

20562056
The following configurations must be defined by the implementation:
20572057

2058-
* `debug_assertions`. Enabled by default when compiling without optimizations.
2058+
* `debug_assertions` - Enabled by default when compiling without optimizations.
20592059
This can be used to enable extra debugging code in development but not in
20602060
production. For example, it controls the behavior of the standard library's
20612061
`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"`
20632063
`"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
20652065
`"big"`.
2066-
* `target_env = ".."` - an option provided by the compiler by default
2066+
* `target_env = ".."` - An option provided by the compiler by default
20672067
describing the runtime environment of the target platform. Some examples of
20682068
this are `musl` for builds targeting the MUSL libc implementation, `msvc` for
20692069
Windows builds targeting MSVC, and `gnu` frequently the rest of the time. This
20702070
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.
20722072
`"unix"` or `"windows"`. The value of this configuration option is defined
20732073
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
20752075
`"windows"`, `"macos"`, `"ios"`, `"linux"`, `"android"`, `"freebsd"`, `"dragonfly"`,
20762076
`"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
20782078
to `"32"` for targets with 32-bit pointers, and likewise set to `"64"` for
20792079
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`.
20832083

20842084
You can also set another attribute based on a `cfg` variable with `cfg_attr`:
20852085

0 commit comments

Comments
 (0)