diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2015-01-03 22:42:21 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2015-01-03 22:42:21 -0500 |
| commit | 56dcbd17fdad5d39b7b02e22a7490d2468718d08 (patch) | |
| tree | b846c1e3a491e54feca36375f4894e5cc882528e /src/test/bench | |
| parent | c6c786671d692d7b13c2e5c68a53001327b4b125 (diff) | |
| download | rust-56dcbd17fdad5d39b7b02e22a7490d2468718d08.tar.gz rust-56dcbd17fdad5d39b7b02e22a7490d2468718d08.zip | |
sed -i -s 's/\bmod,/self,/g' **/*.rs
Diffstat (limited to 'src/test/bench')
| -rw-r--r-- | src/test/bench/shootout-k-nucleotide-pipes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/bench/shootout-k-nucleotide-pipes.rs b/src/test/bench/shootout-k-nucleotide-pipes.rs index d92d30ca844..44abd1d09d1 100644 --- a/src/test/bench/shootout-k-nucleotide-pipes.rs +++ b/src/test/bench/shootout-k-nucleotide-pipes.rs @@ -18,7 +18,7 @@ extern crate collections; use std::ascii::{AsciiExt, OwnedAsciiExt}; -use std::cmp::Ordering::{mod, Less, Greater, Equal}; +use std::cmp::Ordering::{self, Less, Greater, Equal}; use std::collections::HashMap; use std::sync::mpsc::{channel, Sender, Receiver}; use std::mem::replace; |
