From 7e305a70b0fece8c7bfb0580bc2fb956ffcd93f0 Mon Sep 17 00:00:00 2001 From: Graham Sanderson Date: Fri, 3 Feb 2023 10:21:40 -0600 Subject: [PATCH] fix typo (#1217) --- src/rp2_common/pico_rand/include/pico/rand.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rp2_common/pico_rand/include/pico/rand.h b/src/rp2_common/pico_rand/include/pico/rand.h index 8f8211f..356c7ce 100644 --- a/src/rp2_common/pico_rand/include/pico/rand.h +++ b/src/rp2_common/pico_rand/include/pico/rand.h @@ -55,7 +55,7 @@ extern "C" { * With default settings, the seed generation takes approximately 1 millisecond while * subsequent random numbers generally take between 10 and 20 microseconds to generate. * - * pico_rand methods may be safely called from either core or from an IRQ, but be careful in the latter case as the + * pico_rand methods may be safely called from either core or from an IRQ, but be careful in the latter case as * the calls may block for a number of microseconds waiting on more entropy. */