From e027a834ab50fcaaccf9ab024f0235e7206103c6 Mon Sep 17 00:00:00 2001 From: Giuseppe Date: Thu, 14 May 2020 10:29:30 +0200 Subject: [PATCH] Typo fix (#233) --- writer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/writer.go b/writer.go index a58d7177..67605e2a 100644 --- a/writer.go +++ b/writer.go @@ -29,7 +29,7 @@ type syncWriter struct { // This syncer can be the call to writer's Write method is not thread safe. // Note that os.File Write operation is using write() syscall which is supposed // to be thread-safe on POSIX systems. So there is no need to use this with -// os.File on such systems as zerolog guaranties to issue a single Write call +// os.File on such systems as zerolog guarantees to issue a single Write call // per log event. func SyncWriter(w io.Writer) io.Writer { if lw, ok := w.(LevelWriter); ok {