From 6f4167b30ba83b088e7f7f14044d7e30d2eeb9ac Mon Sep 17 00:00:00 2001 From: Felix Geller Date: Fri, 17 Nov 2017 17:29:45 +0100 Subject: [PATCH] small change to comment wording. --- tail.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tail.go b/tail.go index c99cdaa2..fdf446fe 100644 --- a/tail.go +++ b/tail.go @@ -137,8 +137,8 @@ func TailFile(filename string, config Config) (*Tail, error) { // Return the file's current position, like stdio's ftell(). // But this value is not very accurate. -// it may readed one line in the chan(tail.Lines), -// so it may lost one line. +// One line from the chan(tail.Lines) may have been read, +// so it may have lost one line. func (tail *Tail) Tell() (offset int64, err error) { if tail.file == nil { return