Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit ce7f1b7

Browse files
committed
Ignore two new doc blocks in testing
1 parent cfe3ea6 commit ce7f1b7

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
@@ -163,7 +163,7 @@ final binary still has SIMD instructions, for example, the function in question
163163
will need to be found and the crate in question will likely contain something
164164
like:
165165

166-
```rust
166+
```rust,ignore
167167
#[target_feature(enable = "simd128")]
168168
fn foo() {
169169
// ...
@@ -176,7 +176,7 @@ at compile time either by default or through a Cargo feature. For crate authors
176176
it's recommended to avoid `#[target_feature(enable = "...")]` except where
177177
necessary and instead use:
178178

179-
```rust
179+
```rust,ignore
180180
#[cfg(target_feature = "simd128")]
181181
fn foo() {
182182
// ...

0 commit comments

Comments
 (0)