Skip to content

Commit a5082ef

Browse files
committed
Appease tidy
1 parent b6f65a4 commit a5082ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/rustc/src/platform-support/wasm32-unknown-unknown.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ final binary still has SIMD instructions, for example, the function in question
171171
will need to be found and the crate in question will likely contain something
172172
like:
173173

174-
```rust,ignore
174+
```rust,ignore (not-always-compiled-to-wasm)
175175
#[target_feature(enable = "simd128")]
176176
fn foo() {
177177
// ...
@@ -184,7 +184,7 @@ at compile time either by default or through a Cargo feature. For crate authors
184184
it's recommended to avoid `#[target_feature(enable = "...")]` except where
185185
necessary and instead use:
186186

187-
```rust,ignore
187+
```rust,ignore (not-always-compiled-to-wasm)
188188
#[cfg(target_feature = "simd128")]
189189
fn foo() {
190190
// ...

0 commit comments

Comments
 (0)