mlog: update function docs

This commit is contained in:
Brian Picciano 2019-01-25 16:39:57 -05:00
parent e9416dbe2a
commit a24262f295

View File

@ -168,8 +168,8 @@ func (m merger) KV() map[string]interface{} {
return mergeInto(m.base, m.rest...) return mergeInto(m.base, m.rest...)
} }
// Prefix prefixes the all keys returned from the given KVer with the given // Prefix prefixes all keys returned from the given KVer with the given prefix
// prefix string. // string.
func Prefix(kv KVer, prefix string) KVer { func Prefix(kv KVer, prefix string) KVer {
return KVerFunc(func() map[string]interface{} { return KVerFunc(func() map[string]interface{} {
kvm := readOnlyKVM(kv) kvm := readOnlyKVM(kv)
@ -223,7 +223,7 @@ func stringSlice(kv KV) [][2]string {
// Handler if necessary. // Handler if necessary.
type Handler func(msg Message) error type Handler func(msg Message) error
// DefaultFormat formats and writs the Message to the given Writer using mlog's // DefaultFormat formats and writes the Message to the given Writer using mlog's
// default format. // default format.
func DefaultFormat(w io.Writer, msg Message) error { func DefaultFormat(w io.Writer, msg Message) error {
var err error var err error