Ignore two new doc blocks in testing

This commit is contained in:
Alex Crichton 2024-08-01 14:33:04 -07:00
parent cfe3ea65d2
commit ce7f1b77f4

View file

@ -163,7 +163,7 @@ final binary still has SIMD instructions, for example, the function in question
will need to be found and the crate in question will likely contain something
like:
```rust
```rust,ignore
#[target_feature(enable = "simd128")]
fn foo() {
// ...
@ -176,7 +176,7 @@ at compile time either by default or through a Cargo feature. For crate authors
it's recommended to avoid `#[target_feature(enable = "...")]` except where
necessary and instead use:
```rust
```rust,ignore
#[cfg(target_feature = "simd128")]
fn foo() {
// ...