Skip to content

Commit e027a83

Browse files
authored
Typo fix (#233)
1 parent 50ffd2b commit e027a83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

writer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ type syncWriter struct {
2929
// This syncer can be the call to writer's Write method is not thread safe.
3030
// Note that os.File Write operation is using write() syscall which is supposed
3131
// to be thread-safe on POSIX systems. So there is no need to use this with
32-
// os.File on such systems as zerolog guaranties to issue a single Write call
32+
// os.File on such systems as zerolog guarantees to issue a single Write call
3333
// per log event.
3434
func SyncWriter(w io.Writer) io.Writer {
3535
if lw, ok := w.(LevelWriter); ok {

0 commit comments

Comments
 (0)