From e519af63e1abd9c796ab8ce9cbbf6547659e7f57 Mon Sep 17 00:00:00 2001 From: jrosendo Date: Tue, 8 Nov 2022 16:36:20 +0000 Subject: [PATCH] docs(argSort): fixed subject - fix grammar and indentation --- subjects/argsort/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subjects/argsort/README.md b/subjects/argsort/README.md index 2c5748e6..7fd49080 100644 --- a/subjects/argsort/README.md +++ b/subjects/argsort/README.md @@ -4,9 +4,9 @@ Write a program that checks if an argument is sorted or not, the comparison should be by index of ascii and all printable characters will be used. -- Your Program should return `T` followed by a newline (`'\n'`) if the argument is sorted. -- Your Program should return `F` followed by a newline (`'\n'`) if the argument is not sorted. -- If the number of arguments is not 2 do nothing. +- Your program should return `T` followed by a newline `\n` if the argument is sorted. +- Your program should return `F` followed by a newline `\n` if the argument is not sorted. +- If the number of arguments is different from 2, do nothing. ### Usage