From ea197802eb218ea675a8286a77c13e132aa9a21c Mon Sep 17 00:00:00 2001 From: Olivier Poitrey Date: Thu, 17 May 2018 16:48:29 -0700 Subject: [PATCH] Fix comments --- array.go | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/array.go b/array.go index 47402ec..b876033 100644 --- a/array.go +++ b/array.go @@ -43,7 +43,7 @@ func (a *Array) write(dst []byte) []byte { } // Object marshals an object that implement the LogObjectMarshaler -// interface and enc.Append it to the array. +// interface and Append it to the array. func (a *Array) Object(obj LogObjectMarshaler) *Array { e := Dict() obj.MarshalZerologObject(e) @@ -53,121 +53,121 @@ func (a *Array) Object(obj LogObjectMarshaler) *Array { return a } -// Str enc.Append the val as a string to the array. +// Str Append the val as a string to the array. func (a *Array) Str(val string) *Array { a.buf = enc.AppendString(enc.AppendArrayDelim(a.buf), val) return a } -// Bytes enc.Append the val as a string to the array. +// Bytes Append the val as a string to the array. func (a *Array) Bytes(val []byte) *Array { a.buf = enc.AppendBytes(enc.AppendArrayDelim(a.buf), val) return a } -// Hex enc.Append the val as a hex string to the array. +// Hex Append the val as a hex string to the array. func (a *Array) Hex(val []byte) *Array { a.buf = enc.AppendHex(enc.AppendArrayDelim(a.buf), val) return a } -// Err enc.Append the err as a string to the array. +// Err Append the err as a string to the array. func (a *Array) Err(err error) *Array { a.buf = enc.AppendError(enc.AppendArrayDelim(a.buf), err) return a } -// Bool enc.Append the val as a bool to the array. +// Bool Append the val as a bool to the array. func (a *Array) Bool(b bool) *Array { a.buf = enc.AppendBool(enc.AppendArrayDelim(a.buf), b) return a } -// Int enc.Append i as a int to the array. +// Int Append i as a int to the array. func (a *Array) Int(i int) *Array { a.buf = enc.AppendInt(enc.AppendArrayDelim(a.buf), i) return a } -// Int8 enc.Append i as a int8 to the array. +// Int8 Append i as a int8 to the array. func (a *Array) Int8(i int8) *Array { a.buf = enc.AppendInt8(enc.AppendArrayDelim(a.buf), i) return a } -// Int16 enc.Append i as a int16 to the array. +// Int16 Append i as a int16 to the array. func (a *Array) Int16(i int16) *Array { a.buf = enc.AppendInt16(enc.AppendArrayDelim(a.buf), i) return a } -// Int32 enc.Append i as a int32 to the array. +// Int32 Append i as a int32 to the array. func (a *Array) Int32(i int32) *Array { a.buf = enc.AppendInt32(enc.AppendArrayDelim(a.buf), i) return a } -// Int64 enc.Append i as a int64 to the array. +// Int64 Append i as a int64 to the array. func (a *Array) Int64(i int64) *Array { a.buf = enc.AppendInt64(enc.AppendArrayDelim(a.buf), i) return a } -// Uint enc.Append i as a uint to the array. +// Uint Append i as a uint to the array. func (a *Array) Uint(i uint) *Array { a.buf = enc.AppendUint(enc.AppendArrayDelim(a.buf), i) return a } -// Uint8 enc.Append i as a uint8 to the array. +// Uint8 Append i as a uint8 to the array. func (a *Array) Uint8(i uint8) *Array { a.buf = enc.AppendUint8(enc.AppendArrayDelim(a.buf), i) return a } -// Uint16 enc.Append i as a uint16 to the array. +// Uint16 Append i as a uint16 to the array. func (a *Array) Uint16(i uint16) *Array { a.buf = enc.AppendUint16(enc.AppendArrayDelim(a.buf), i) return a } -// Uint32 enc.Append i as a uint32 to the array. +// Uint32 Append i as a uint32 to the array. func (a *Array) Uint32(i uint32) *Array { a.buf = enc.AppendUint32(enc.AppendArrayDelim(a.buf), i) return a } -// Uint64 enc.Append i as a uint64 to the array. +// Uint64 Append i as a uint64 to the array. func (a *Array) Uint64(i uint64) *Array { a.buf = enc.AppendUint64(enc.AppendArrayDelim(a.buf), i) return a } -// Float32 enc.Append f as a float32 to the array. +// Float32 Append f as a float32 to the array. func (a *Array) Float32(f float32) *Array { a.buf = enc.AppendFloat32(enc.AppendArrayDelim(a.buf), f) return a } -// Float64 enc.Append f as a float64 to the array. +// Float64 Append f as a float64 to the array. func (a *Array) Float64(f float64) *Array { a.buf = enc.AppendFloat64(enc.AppendArrayDelim(a.buf), f) return a } -// Time enc.Append t formated as string using zerolog.TimeFieldFormat. +// Time Append t formated as string using zerolog.TimeFieldFormat. func (a *Array) Time(t time.Time) *Array { a.buf = enc.AppendTime(enc.AppendArrayDelim(a.buf), t, TimeFieldFormat) return a } -// Dur enc.Append d to the array. +// Dur Append d to the array. func (a *Array) Dur(d time.Duration) *Array { a.buf = enc.AppendDuration(enc.AppendArrayDelim(a.buf), d, DurationFieldUnit, DurationFieldInteger) return a } -// Interface enc.Append i marshaled using reflection. +// Interface Append i marshaled using reflection. func (a *Array) Interface(i interface{}) *Array { if obj, ok := i.(LogObjectMarshaler); ok { return a.Object(obj)