From e0e31b963747810f81a83e8a0c64c30113a43ffb Mon Sep 17 00:00:00 2001 From: qndel Date: Wed, 18 Sep 2024 08:44:25 +0200 Subject: [PATCH] infintesimal -> infinitesimal --- src/stdlib/SDL_random.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stdlib/SDL_random.c b/src/stdlib/SDL_random.c index ac55fa7218..37c29cd8c3 100644 --- a/src/stdlib/SDL_random.c +++ b/src/stdlib/SDL_random.c @@ -96,7 +96,7 @@ Sint32 SDL_rand_r(Uint64 *state, Sint32 n) if (n < 0) { // The algorithm looks like it works for numbers < 0 but it has an - // infintesimal chance of returning a value out of range. + // infinitesimal chance of returning a value out of range. // Returning -SDL_rand(abs(n)) blows up at INT_MIN instead. // It's easier to just say no. return 0;