From 2364b869f70ff9a7e16e6affe947ce9a9138c9d4 Mon Sep 17 00:00:00 2001 From: kpcyrd Date: Thu, 13 Jan 2022 22:21:41 +0100 Subject: [PATCH] Fix get_rng_fd comment typo --- src/use_file.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/use_file.rs b/src/use_file.rs index 366e4113..16c0216b 100644 --- a/src/use_file.rs +++ b/src/use_file.rs @@ -45,7 +45,7 @@ pub fn getrandom_inner(dest: &mut [u8]) -> Result<(), Error> { } // Returns the file descriptor for the device file used to retrieve random -// bytes. The file will be opened exactly once. All successful calls will +// bytes. The file will be opened exactly once. All subsequent calls will // return the same file descriptor. This file descriptor is never closed. fn get_rng_fd() -> Result { static FD: AtomicUsize = AtomicUsize::new(LazyUsize::UNINIT);