From 13642319518d7a2ab7a4c99213539a93d125161e Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Fri, 2 Jul 2021 19:00:02 +0100 Subject: [PATCH] Update README.md --- subjects/issorted/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/issorted/README.md b/subjects/issorted/README.md index a09abfd5..819c9917 100644 --- a/subjects/issorted/README.md +++ b/subjects/issorted/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function `IsSorted` that returns `true` if the slice of `int` is sorted, and that returns `false` otherwise. +Write a function `IsSorted` that returns `true`, if the slice of `int` is sorted, and that returns `false` otherwise. The function passed in parameter returns a positive `int` if `a` (the first argument) is superior to `b` (the second argument), it returns `0` if they are equal and it returns a negative `int` otherwise.