Skip to content

Commit

Permalink
auxiliary typo
Browse files Browse the repository at this point in the history
  • Loading branch information
designeng committed Oct 22, 2015
1 parent f9299a5 commit 1e8f60d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sorting/radixsort.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
count[j] += count[j - 1];
}

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

0 comments on commit 1e8f60d

Please sign in to comment.