From 5c3876cd85141ea60cde1521a7feee2ee4895413 Mon Sep 17 00:00:00 2001 From: Eason Lin Date: Thu, 24 Aug 2017 00:05:18 +0800 Subject: [PATCH] doc(readme): update writing logs section wording. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index faa6c9f0..2e6574e5 100644 --- a/README.md +++ b/README.md @@ -423,7 +423,7 @@ func main() { f, _ := os.Create("gin.log") gin.DefaultWriter = io.MultiWriter(f) - // Use the following code if you need to write logs to file and console at the same time. + // Use the following code if you need to write the logs to file and console at the same time. // gin.DefaultWriter = io.MultiWriter(f, os.Stdout) router := gin.Default()