Skip to content

Commit 4066de3

Browse files
committed
Pass rustdocflags to doctests
1 parent 6ec30b8 commit 4066de3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ jobs:
263263
run: |
264264
cargo test --doc --workspace --locked --all-features --no-fail-fast --target wasm32-wasip1 \
265265
--config 'target.wasm32-wasip1.rustflags = "-Ctarget-feature=+simd128"' \
266+
--config 'target.wasm32-wasip1.rustdocflags = "-Ctarget-feature=+simd128"' \
266267
--config 'target.wasm32-wasip1.runner = "wasmtime"'
267268
268269

fearless_simd/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
//! To call a function with the best available target features and get the associated `Simd`
2121
//! implementation, use the [`dispatch!()`] macro:
2222
//!
23-
//! ```rust,ignore
23+
//! ```rust
2424
//! use fearless_simd::{Level, Simd, dispatch};
2525
//!
2626
//! #[inline(always)]

fearless_simd/src/macros.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
///
3232
/// # Example
3333
///
34-
/// ```rust,ignore
34+
/// ```rust
3535
/// use fearless_simd::{Level, Simd, dispatch};
3636
///
3737
/// #[inline(always)]

0 commit comments

Comments
 (0)