From 6c818d6ad8e341685a47784ab52e6e13ffb871bc Mon Sep 17 00:00:00 2001 From: kallgueye Date: Sat, 5 Oct 2024 14:31:42 +0000 Subject: [PATCH] fix typo in Readme --- subjects/previousprime/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/previousprime/README.md b/subjects/previousprime/README.md index 8cd5c12948..bf1833d960 100644 --- a/subjects/previousprime/README.md +++ b/subjects/previousprime/README.md @@ -2,7 +2,7 @@ ### Instructions -Create a **function** which returns the first prime number which is less than or equal to the `u64` passed as an argument. +Create a **function** which returns the first prime number which is less than to the `u64` passed as an argument. If there are no smaller primes, the function should return `0`.