Skip to content

Commit 17c5a67

Browse files
committed
Update for review comments.
1 parent cf7a4bc commit 17c5a67

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/attributes/codegen.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Feature | Implicitly Enables | Description
8686
`rdrand` | | [`rdrand`] — Read random number
8787
`rdseed` | | [`rdseed`] — Read random seed
8888
`sha` | `sse2` | [SHA] — Secure Hash Algorithm
89-
`sse` | | [SSE] — Streaming SIMD Extensions
89+
`sse` | | [SSE] — Streaming <abbr title="Single Instruction Multiple Data">SIMD</abbr> Extensions
9090
`sse2` | `sse` | [SSE2] — Streaming SIMD Extensions 2
9191
`sse3` | `sse2` | [SSE3] — Streaming SIMD Extensions 3
9292
`sse4.1` | `sse3` | [SSE4.1] — Streaming SIMD Extensions 4.1
@@ -97,6 +97,8 @@ Feature | Implicitly Enables | Description
9797
`xsaveopt` | | [`xsaveopt`] — Save processor extended states optimized
9898
`xsaves` | | [`xsaves`] — Save processor extended states supervisor
9999

100+
<!-- Keep links near each table to make it easier to move and update. -->
101+
100102
[AES]: https://en.wikipedia.org/wiki/AES_instruction_set
101103
[AVX]: https://en.wikipedia.org/wiki/Advanced_Vector_Extensions
102104
[AVX2]: https://en.wikipedia.org/wiki/Advanced_Vector_Extensions#AVX2

src/conditional-compilation.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,7 @@ Example values:
107107

108108
See the [`target_feature` attribute] for more details on the available
109109
features. An additional feature of `crt-static` is available to the
110-
`target_feature` option to indicate that a static C runtime is available, see
111-
[static and dynamic C runtimes] for more information.
110+
`target_feature` option to indicate that a [static C runtime] is available.
112111

113112
### `target_os`
114113

@@ -329,4 +328,4 @@ println!("I'm running on a {} machine!", machine_kind);
329328
[attribute]: attributes.html
330329
[attributes]: attributes.html
331330
[crate type]: linkage.html
332-
[static and dynamic C runtimes]: linkage.html#static-and-dynamic-c-runtimes
331+
[static C runtime]: linkage.html#static-and-dynamic-c-runtimes

0 commit comments

Comments
 (0)