diff --git a/subjects/sortBydir/README.md b/subjects/sortBydir/README.md index 02c74d4b2..ad6cf3351 100644 --- a/subjects/sortBydir/README.md +++ b/subjects/sortBydir/README.md @@ -14,7 +14,7 @@ If the values of the array is not an integer, return false. ### Expected Function ```js -function sortReloaded(arrayIntg,dir) +function sortBydir(arrayIntg,dir) ``` @@ -24,8 +24,8 @@ Here is a program to test your function. ```js const inputArray = [4, 2, 8, 1, 5]; -const ascendingResult = orderArray(inputArray); -const descendingResult = orderArray(inputArray, 'desc'); +const ascendingResult = sortBydir(inputArray); +const descendingResult = sortBydir(inputArray, 'desc'); console.log(ascendingResult); console.log(descendingResult); ``` @@ -37,4 +37,4 @@ $ node index.js [1, 2, 4, 5, 8] [8, 5, 4, 2, 1] $ -``` +``` \ No newline at end of file