Skip to content

Commit e572992

Browse files
committed
Tweak a few items in the docs
1 parent 8d7ad15 commit e572992

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

crates/core_arch/src/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ pub mod arch {
8888
///
8989
/// ## SIMD
9090
///
91-
/// The [simd proposa][simd] for WebAssembly adds a new `v128` type for a
91+
/// The [simd proposal][simd] for WebAssembly adds a new `v128` type for a
9292
/// 128-bit SIMD register. It also adds a large array of instructions to
9393
/// operate on the `v128` type to perform data processing. The SIMD proposal
9494
/// has been in progress for quite some time and many instructions have come

crates/core_arch/src/wasm32/simd128.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -410,11 +410,13 @@ pub macro v8x16_shuffle(
410410

411411
// internal implementation detail of the `v8x16_shuffle`, done so there's a name
412412
// that always works for the macro to import.
413+
#[doc(hidden)]
413414
pub use crate::mem::transmute as __v8x16_shuffle_transmute;
414415

415416
// internal to this module and only generated here as an implementation detail
416417
// of the `v8x16_shuffle` macro.
417418
#[repr(simd)]
419+
#[doc(hidden)]
418420
pub struct __v8x16_shuffle_u8x16(
419421
u8,
420422
u8,

0 commit comments

Comments
 (0)