Skip to content

Commit b4465ac

Browse files
committed
stdlib: Fix long line in sort.rs
1 parent 4c76bfd commit b4465ac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib/sort.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,8 @@ mod ivector {
209209
// Based on algorithm presented by Sedgewick and Bentley here:
210210
// http://www.cs.princeton.edu/~rs/talks/QuicksortIsOptimal.pdf
211211
// 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'
213214
fn qsort3[T](lteq[T] compare_func_lt, lteq[T] compare_func_eq,
214215
&T[mutable] arr, int left, int right) {
215216
if (right <= left) { ret; }

0 commit comments

Comments
 (0)