From a733fd7f6716954b5bf1eb6ad77cd2633f2f4ae8 Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Wed, 18 Jul 2018 12:03:27 -0500 Subject: [PATCH] fix spelling mistake --- fragment.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fragment.go b/fragment.go index a3ba53126..36789ab8c 100644 --- a/fragment.go +++ b/fragment.go @@ -2043,7 +2043,7 @@ func newMapVector() *mapVector { } // Get returns the rowID associated to the given colID. -// Additionaly, it returns true if a value was found, +// Additionally, it returns true if a value was found, // otherwise it returns false. func (m *mapVector) Get(colID uint64) (uint64, bool) { m.mu.RLock() @@ -2073,7 +2073,7 @@ func newRowsVector(f *fragment) *rowsVector { } // Get returns the rowID associated to the given colID. -// Additionaly, it returns true if a value was found, +// Additionally, it returns true if a value was found, // otherwise it returns false. func (v *rowsVector) Get(colID uint64) (uint64, bool) { rows := v.f.rowsForColumn(colID)