Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1e8f60d

Browse files
committed
auxiliary typo
1 parent f9299a5 commit 1e8f60d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sorting/radixsort.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
count[j] += count[j - 1];
7979
}
8080

81-
/* Move elements to auxilary array */
81+
/* Move elements to auxiliary array */
8282
var aux = [];
8383
for (j = size - 1; j >= 0; j -= 1) {
8484
digit = getDigit(array[j], i) || 0;

0 commit comments

Comments
 (0)