Skip to content

Commit 5864683

Browse files
authored
Remove outdated comment (#62)
1 parent f5e3b45 commit 5864683

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,6 @@ pub trait TryRng {
197197
fn try_fill_bytes(&mut self, dst: &mut [u8]) -> Result<(), Self::Error>;
198198
}
199199

200-
// Note that, unfortunately, this blanket impl prevents us from implementing
201-
// `TryRng` for types which can be dereferenced to `TryRng`, i.e. `TryRng`
202-
// will not be automatically implemented for `&mut R`, `Box<R>`, etc.
203200
impl<R: DerefMut> TryRng for R
204201
where
205202
R::Target: TryRng,

0 commit comments

Comments
 (0)