Merge pull request #356 from tevino/patch-1

Corrected a comment's typo
This commit is contained in:
Aaron Greenlee 2016-07-15 22:20:23 -04:00 committed by GitHub
commit fcebd8de86
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ func New() *Logger {
}
}
// Adds a field to the log entry, note that you it doesn't log until you call
// Adds a field to the log entry, note that it doesn't log until you call
// Debug, Print, Info, Warn, Fatal or Panic. It only creates a log entry.
// If you want multiple fields, use `WithFields`.
func (logger *Logger) WithField(key string, value interface{}) *Entry {