Skip to content

Commit c739af3

Browse files
committed
Hide rustc unstable feature from docs
1 parent 6bf5128 commit c739af3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/core_simd/src/swizzle.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ where
271271
/// The reverse of this operation is [`Simd::deinterleave`].
272272
///
273273
/// ```
274-
/// #![feature(portable_simd)]
274+
/// # #![feature(portable_simd)]
275275
/// # use core::simd::Simd;
276276
/// let a = Simd::from_array([0, 1, 2, 3]);
277277
/// let b = Simd::from_array([4, 5, 6, 7]);
@@ -324,7 +324,7 @@ where
324324
/// The reverse of this operation is [`Simd::interleave`].
325325
///
326326
/// ```
327-
/// #![feature(portable_simd)]
327+
/// # #![feature(portable_simd)]
328328
/// # use core::simd::Simd;
329329
/// let a = Simd::from_array([0, 4, 1, 5]);
330330
/// let b = Simd::from_array([2, 6, 3, 7]);

0 commit comments

Comments
 (0)