From acde079b88b3b26738fb2e1fd79a8ab3e846af9d Mon Sep 17 00:00:00 2001 From: davhojt Date: Tue, 18 Jul 2023 08:03:08 +0100 Subject: [PATCH] feat(SortArgs): correct grammar --- subjects/java/piscine/SortArgs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/java/piscine/SortArgs/README.md b/subjects/java/piscine/SortArgs/README.md index c0d7086fb..f835d1ff9 100644 --- a/subjects/java/piscine/SortArgs/README.md +++ b/subjects/java/piscine/SortArgs/README.md @@ -4,7 +4,7 @@ Create a file named `SortArgs.java`. -Write a function `sort` that sorts the given array specified in the parameters and print the sorted array into the standard ouput. The elements should be separated by spaces with a new line at the end. All the given elements are correct numbers. +Write a function `sort` that sorts the given array specified in the parameters and prints it to the standard output. The elements should be separated by spaces followed by a a new line character. All the given elements are valid numbers. ### Expected Functions