Skip to content

Commit f12fbfd

Browse files
committed
linting
1 parent 636668e commit f12fbfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

encode_slice.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ func (enc *Encoder) SliceFloat64(s []float64) {
7070
}))
7171
}
7272

73-
// AddSliceFloat64Key marshals the given []string s
73+
// AddSliceFloat64Key marshals the given []float64 s
7474
func (enc *Encoder) AddSliceFloat64Key(k string, s []float64) {
7575
enc.SliceFloat64Key(k, s)
7676
}
7777

78-
// SliceFloat64Key marshals the given []string s
78+
// SliceFloat64Key marshals the given []float64 s
7979
func (enc *Encoder) SliceFloat64Key(k string, s []float64) {
8080
enc.ArrayKey(k, EncodeArrayFunc(func(enc *Encoder) {
8181
for _, i := range s {

0 commit comments

Comments
 (0)