From 6b4a20f2e3fa40611eb3216aa9a8a9181e01d236 Mon Sep 17 00:00:00 2001 From: Firas Khalil Khana Date: Sat, 1 May 2021 13:21:55 +0300 Subject: [PATCH] Fix typo 'are not' --- 14-arrays/exercises/12-sorter/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14-arrays/exercises/12-sorter/main.go b/14-arrays/exercises/12-sorter/main.go index 8b7a9b9..0a9a9ce 100644 --- a/14-arrays/exercises/12-sorter/main.go +++ b/14-arrays/exercises/12-sorter/main.go @@ -21,7 +21,7 @@ package main // // RESTRICTION // + Maximum 5 numbers can be provided -// + If one of the arguments are not a valid number, skip it +// + If one of the arguments is not a valid number, skip it // // HINTS // + You can use the bubble-sort algorithm to sort the numbers.