Skip to content

Commit 550fb16

Browse files
authored
Fix typo in 2867
1 parent 68e3b4d commit 550fb16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/2867-isa-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ fn add_five(x: i32) -> i32 {
3535
}
3636
```
3737

38-
It it a compile time error to specify an instruction set that is not available on the target you're compiling for. Users wishing for their code to be as portable as possible should use `cfg_attr` to only enable the attribute when using the appropriate targets.
38+
It is a compile time error to specify an instruction set that is not available on the target you're compiling for. Users wishing for their code to be as portable as possible should use `cfg_attr` to only enable the attribute when using the appropriate targets.
3939

4040
```rust
4141
// This will fail to build if `arm::a32` isn't available

0 commit comments

Comments
 (0)