We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c76bfd commit b4465acCopy full SHA for b4465ac
src/lib/sort.rs
@@ -209,7 +209,8 @@ mod ivector {
209
// Based on algorithm presented by Sedgewick and Bentley here:
210
// http://www.cs.princeton.edu/~rs/talks/QuicksortIsOptimal.pdf
211
// According to these slides this is the algorithm of choice for
212
- // 'randomly ordered keys, abstract compare' & 'small number of key values'
+ // 'randomly ordered keys, abstract compare' & 'small number of key
213
+ // values'
214
fn qsort3[T](lteq[T] compare_func_lt, lteq[T] compare_func_eq,
215
&T[mutable] arr, int left, int right) {
216
if (right <= left) { ret; }
0 commit comments