Skip to content

Commit ab64f7d

Browse files
author
Hagai Barel
committed
Fix typo in comments
1 parent 59f376a commit ab64f7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

emq_exporter.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -196,13 +196,13 @@ func (e *Exporter) fetch(target string) (map[string]interface{}, error) {
196196
}
197197

198198
if err := json.Unmarshal(streamToByte(res.Body), &dat); err != nil {
199-
return nil, fmt.Errorf("Failed to unmarshel json")
199+
return nil, fmt.Errorf("Failed to unmarshal json")
200200
}
201201

202202
return dat, nil
203203
}
204204

205-
//Convert a straem into byte array
205+
//Convert a stream into byte array
206206
func streamToByte(stream io.Reader) []byte {
207207
buf := new(bytes.Buffer)
208208
buf.ReadFrom(stream)

0 commit comments

Comments
 (0)