From ea708717c50fdebac3e69b0d4701f4dfb0b25afc Mon Sep 17 00:00:00 2001 From: davhojt Date: Tue, 31 May 2022 10:17:45 +0300 Subject: [PATCH] docs(nextprime) correct grammar --- subjects/nextprime/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subjects/nextprime/README.md b/subjects/nextprime/README.md index 138c7a14..c320e1aa 100644 --- a/subjects/nextprime/README.md +++ b/subjects/nextprime/README.md @@ -2,11 +2,11 @@ ### Instructions -Write a **function** which returns the first prime number which is equal or superior to the `u64` passed as parameter. +Create a **function** which returns the first prime number which is greater than or equal to the `u64` passed as an argument. -The function must be optimized in order to avoid time-outs with the tester. +The function must be optimized, so as to avoid time-outs. -(We consider that only positive numbers can be prime numbers) +> We consider that only positive numbers can be prime numbers. ### Expected function