about summary refs log tree commit diff
path: root/src/libextra/ringbuf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libextra/ringbuf.rs')
-rw-r--r--src/libextra/ringbuf.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libextra/ringbuf.rs b/src/libextra/ringbuf.rs
index e2950293719..9cb45a2ec7a 100644
--- a/src/libextra/ringbuf.rs
+++ b/src/libextra/ringbuf.rs
@@ -509,7 +509,7 @@ mod tests {
     fn bench_grow(b: &mut test::BenchHarness) {
         let mut deq = RingBuf::new();
         do b.iter {
-            for 65.times {
+            do 65.times {
                 deq.push_front(1);
             }
         }