File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 4c76bfdc1f460692d378803b478f02dc45b7e049
2
+ refs/heads/master: b4465aca5ab22447dde52a4a7083d6e3d29e56e2
Original file line number Diff line number Diff line change @@ -209,7 +209,8 @@ mod ivector {
209
209
// Based on algorithm presented by Sedgewick and Bentley here:
210
210
// http://www.cs.princeton.edu/~rs/talks/QuicksortIsOptimal.pdf
211
211
// According to these slides this is the algorithm of choice for
212
- // 'randomly ordered keys, abstract compare' & 'small number of key values'
212
+ // 'randomly ordered keys, abstract compare' & 'small number of key
213
+ // values'
213
214
fn qsort3[ T ] ( lteq[ T ] compare_func_lt, lteq[ T ] compare_func_eq,
214
215
& T [ mutable] arr, int left, int right) {
215
216
if ( right <= left) { ret; }
You can’t perform that action at this time.
0 commit comments