summaryrefslogtreecommitdiff
path: root/util.go
diff options
context:
space:
mode:
authorStani <spe.stani.be@gmail.com>2015-07-04 23:35:14 +0200
committerStani <spe.stani.be@gmail.com>2015-07-04 23:35:14 +0200
commit67354bc81b749bdaeabd5f407aa12e5aef5238ff (patch)
treec7a70ea662033c2e08cbf7a7e205fd3e6878a3a9 /util.go
parent028884946be71f9353f2d4b7ae8df3b77ff17bb7 (diff)
fix typo in documentation string
Diffstat (limited to 'util.go')
-rw-r--r--util.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.go b/util.go
index ed4ffdd..be25f7e 100644
--- a/util.go
+++ b/util.go
@@ -69,7 +69,7 @@ func bufferFromReader(r io.Reader) (b *bytes.Buffer, err error) {
return
}
-// Returns true if the two specified integer slices are equal
+// Returns true if the two specified float slices are equal
func slicesEqual(a, b []float64) bool {
if len(a) != len(b) {
return false