Fix style per standard js rules

This commit is contained in:
Charlie Moore
2021-10-04 18:44:12 -04:00
parent 7c0379c024
commit 7076c2afbf

View File

@ -22,7 +22,7 @@
* @param {number[]} list The array of numbers to sort.
* @return {number[]} The array of numbers sorted in increasing order.
*/
function combSort(list) {
function combSort (list) {
if (list.length === 0) {
return list
}