From 835af806b3a34f75fa29d15f26ab8b3e75cb883a Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Mon, 4 Feb 2013 18:59:04 -0800 Subject: [PATCH] update README -- this is a library, not a program --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index dd53a6e..a21f9e7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Tail implementation in Go +# Go package for tail-ing files -A Go package striving to emulate the BSD `tail` program. +A Go package striving to emulate the features of the BSD `tail` program. ```Go t := tail.TailFile("/var/log/nginx.log", tail.Config{Follow: true}) @@ -19,7 +19,7 @@ To build and test the package, make test -To build the command-line program `gotail`, +To build the toy command-line program `gotail`, cd cmd/gotail make