Merge pull request #713 from earlzo/hotfix/wrong-comment

Fixed: wrong comment for NewEntry
This commit is contained in:
Stephen Day
2018-03-29 14:30:34 -07:00
committed by GitHub
+1 -1
View File
@@ -48,7 +48,7 @@ type Entry struct {
func NewEntry(logger *Logger) *Entry {
return &Entry{
Logger: logger,
// Default is three fields, give a little extra room
// Default is five fields, give a little extra room
Data: make(Fields, 5),
}
}