From 78cae8fb4c9a871cbe5b3d5adb3c4d0380f1be01 Mon Sep 17 00:00:00 2001 From: kortschak Date: Sat, 3 Jun 2017 20:45:06 +0930 Subject: [PATCH] matrix/mat64: fix spelling --- matrix/mat64/vector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix/mat64/vector.go b/matrix/mat64/vector.go index 28da7cb3a..e5fb6cbad 100644 --- a/matrix/mat64/vector.go +++ b/matrix/mat64/vector.go @@ -59,7 +59,7 @@ func (v *Vector) ViewVec(i, n int) *Vector { } // SliceVec returns a new Vector that shares backing data with the receiver. -// The returned matrix starts at i of the recevier and extends k-i elements. +// The returned matrix starts at i of the receiver and extends k-i elements. // SliceVec panics with ErrIndexOutOfRange if the slice is outside the bounds // of the receiver. func (v *Vector) SliceVec(i, k int) *Vector {