Skip to content

Commit d9709e1

Browse files
RalfJungGankra
authored andcommitted
drop parenthetical
1 parent 02b64d1 commit d9709e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/what-unsafe-does.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ language cares about is preventing the following things:
2121
* Breaking the [pointer aliasing rules][]
2222
* Unwinding into another language
2323
* Causing a [data race][race]
24-
* Executing code compiled with target features that the current thread of execution does
25-
not support (see [`target_feature`][])
24+
* Executing code compiled with [target features][] that the current thread of execution does
25+
not support
2626
* Producing invalid primitive values (either alone or as a field of a compound
2727
type such as `enum`/`struct`/array/tuple):
2828
* a `bool` that isn't 0 or 1
@@ -81,4 +81,4 @@ these problems are considered impractical to categorically prevent.
8181
[pointer aliasing rules]: references.html
8282
[uninitialized memory]: uninitialized.html
8383
[race]: races.html
84-
[`target_feature`]: ../reference/attributes/codegen.html#the-target_feature-attribute
84+
[target features]: ../reference/attributes/codegen.html#the-target_feature-attribute

0 commit comments

Comments
 (0)