From 3e9e634fa5ba6e365647d07f31803903bd3d305d Mon Sep 17 00:00:00 2001 From: Akira Hayakawa Date: Sun, 15 Jun 2014 17:00:55 +0900 Subject: [PATCH] tail: fix typo Signed-off-by: Akira Hayakawa --- tail/tail.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();