Skip to content

Commit a0016cc

Browse files
typo
1 parent 14bf689 commit a0016cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

js/src/inplace.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
let _inplace = function ( split ) {
33

44
/**
5-
* In place implementation of radix sort. NOT STABLE.
5+
* In-place implementation of radix sort. NOT STABLE.
66
*
77
* @param {function} msb takes two arguments `(key, shift)` and returns the most
88
* significant bit of `key` shifted to the left by `shift` places.

js/src/stable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
let _stable = function ( split ) {
33

44
/**
5-
* In place implementation of radix sort. NOT STABLE.
5+
* In-place implementation of radix sort. NOT STABLE.
66
*
77
* @param {function} lsb takes two arguments `(key, shift)` and returns the least
88
* significant bit of `key` shifted to the right by `shift` places.

0 commit comments

Comments
 (0)