docs(argSort): fixed subject

- fix grammar and indentation
This commit is contained in:
jrosendo 2022-11-08 16:36:20 +00:00 committed by José Rosendo
parent e5928b32f2
commit e519af63e1
1 changed files with 3 additions and 3 deletions

View File

@ -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