diff --git a/tail/tail.rs b/tail/tail.rs index 5ae4ca614..a2591c3c8 100644 --- a/tail/tail.rs +++ b/tail/tail.rs @@ -149,7 +149,7 @@ fn obsolete (options: &[String]) -> (Vec, Option) { } fn tail (reader: &mut BufferedReader, line_count:uint, follow:bool, sleep_sec:u64) { - // read trough each line and store them in a ringbuffer that always contains + // read through each line and store them in a ringbuffer that always contains // line_count lines. When reaching the end of file, output the lines in the // ringbuf. let mut ringbuf : RingBuf = RingBuf::new();