Fix typos
This commit is contained in:
parent
397b56dc9d
commit
7e8bba7e7f
4
event.go
4
event.go
|
@ -15,7 +15,7 @@ var eventPool = &sync.Pool{
|
|||
},
|
||||
}
|
||||
|
||||
// Event represents a log event. It is instancied by one of the level method of
|
||||
// Event represents a log event. It is instanced by one of the level method of
|
||||
// Logger and finalized by the Msg or Msgf method.
|
||||
type Event struct {
|
||||
buf []byte
|
||||
|
@ -56,7 +56,7 @@ func (e *Event) Enabled() bool {
|
|||
|
||||
// Msg sends the *Event with msg added as the message field if not empty.
|
||||
//
|
||||
// NOTICE: once this methid is called, the *Event should be disposed.
|
||||
// NOTICE: once this method is called, the *Event should be disposed.
|
||||
// Calling Msg twice can have unexpected result.
|
||||
func (e *Event) Msg(msg string) error {
|
||||
if !e.enabled {
|
||||
|
|
2
log.go
2
log.go
|
@ -172,7 +172,7 @@ func (l Logger) With() Context {
|
|||
return Context{l}
|
||||
}
|
||||
|
||||
// Level crestes a child logger with the minium accepted level set to level.
|
||||
// Level creates a child logger with the minimum accepted level set to level.
|
||||
func (l Logger) Level(lvl Level) Logger {
|
||||
return Logger{
|
||||
w: l.w,
|
||||
|
|
Loading…
Reference in New Issue