Skip to content

Commit

Permalink
Typo fix (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
gm42 committed May 14, 2020
1 parent 50ffd2b commit e027a83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion writer.go
Expand Up @@ -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 {
Expand Down

0 comments on commit e027a83

Please sign in to comment.