@@ -373,20 +373,20 @@ extern "rust-intrinsic" {
373373 /// a size of `count` * `size_of::<T>()` and an alignment of
374374 /// `min_align_of::<T>()`
375375 ///
376- /// The volatile parameter parameter is set to `true`, so it will not be optimized out.
376+ /// The volatile parameter is set to `true`, so it will not be optimized out.
377377 pub fn volatile_copy_nonoverlapping_memory < T > ( dst : * mut T , src : * const T ,
378378 count : usize ) ;
379379 /// Equivalent to the appropriate `llvm.memmove.p0i8.0i8.*` intrinsic, with
380380 /// a size of `count` * `size_of::<T>()` and an alignment of
381381 /// `min_align_of::<T>()`
382382 ///
383- /// The volatile parameter parameter is set to `true`, so it will not be optimized out.
383+ /// The volatile parameter is set to `true`, so it will not be optimized out.
384384 pub fn volatile_copy_memory < T > ( dst : * mut T , src : * const T , count : usize ) ;
385385 /// Equivalent to the appropriate `llvm.memset.p0i8.*` intrinsic, with a
386386 /// size of `count` * `size_of::<T>()` and an alignment of
387387 /// `min_align_of::<T>()`.
388388 ///
389- /// The volatile parameter parameter is set to `true`, so it will not be optimized out.
389+ /// The volatile parameter is set to `true`, so it will not be optimized out.
390390 pub fn volatile_set_memory < T > ( dst : * mut T , val : u8 , count : usize ) ;
391391
392392 /// Perform a volatile load from the `src` pointer.
0 commit comments