From 791ba2ae9d2ccba4c87241d2416be2b6baffc385 Mon Sep 17 00:00:00 2001 From: davhojt Date: Tue, 31 May 2022 10:15:16 +0300 Subject: [PATCH] docs(previousprime) correct grammar --- subjects/previousprime/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/previousprime/README.md b/subjects/previousprime/README.md index 151923161..196bdbc6c 100644 --- a/subjects/previousprime/README.md +++ b/subjects/previousprime/README.md @@ -2,9 +2,9 @@ ### Instructions -Write a **function** which returns the first prime number which is equal or inferior to the `u64` passed as parameter. +Create a **function** which returns the first prime number which is less than or equal to the `u64` passed as an argument. -If there are no primes inferior to the `u64` passed as parameter the function should return `0`. +If there are no smaller primes, the function should return `0`. ### Expected function