File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 15
15
///
16
16
/// # Panics
17
17
///
18
- /// If `dst` has insufficent space (`4*dst.len() < src.len()`).
18
+ /// If `dst` has insufficient space (`4*dst.len() < src.len()`).
19
19
#[ inline]
20
20
#[ track_caller]
21
21
pub fn read_u32_into ( src : & [ u8 ] , dst : & mut [ u32 ] ) {
@@ -29,7 +29,7 @@ pub fn read_u32_into(src: &[u8], dst: &mut [u32]) {
29
29
///
30
30
/// # Panics
31
31
///
32
- /// If `dst` has insufficent space (`8*dst.len() < src.len()`).
32
+ /// If `dst` has insufficient space (`8*dst.len() < src.len()`).
33
33
#[ inline]
34
34
#[ track_caller]
35
35
pub fn read_u64_into ( src : & [ u8 ] , dst : & mut [ u64 ] ) {
Original file line number Diff line number Diff line change @@ -419,7 +419,7 @@ pub trait SeedableRng: Sized {
419
419
420
420
/// Create a new PRNG seeded from a potentially fallible `Rng`.
421
421
///
422
- /// See [`from_rng`][SeedableRng::from_rng] docs for more infromation .
422
+ /// See [`from_rng`][SeedableRng::from_rng] docs for more information .
423
423
fn try_from_rng < R : TryRngCore > ( mut rng : R ) -> Result < Self , R :: Error > {
424
424
let mut seed = Self :: Seed :: default ( ) ;
425
425
rng. try_fill_bytes ( seed. as_mut ( ) ) ?;
You can’t perform that action at this time.
0 commit comments