Skip to content

Commit eac985f

Browse files
committed
Fix spelling
1 parent cfddee3 commit eac985f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rand_core/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -448,10 +448,10 @@ impl std::io::Read for dyn RngCore {
448448
}
449449
}
450450

451-
// Implement `CryptoRng` for references to an `CryptoRng`.
451+
// Implement `CryptoRng` for references to a `CryptoRng`.
452452
impl<'a, R: CryptoRng + ?Sized> CryptoRng for &'a mut R {}
453453

454-
// Implement `CryptoRng` for boxed references to an `CryptoRng`.
454+
// Implement `CryptoRng` for boxed references to a `CryptoRng`.
455455
#[cfg(feature = "alloc")]
456456
impl<R: CryptoRng + ?Sized> CryptoRng for Box<R> {}
457457

0 commit comments

Comments
 (0)