fix spelling mistake

This commit is contained in:
Travis Turner 2018-07-18 12:03:27 -05:00
parent 4202e67a9d
commit a733fd7f67
No known key found for this signature in database
GPG key ID: 7F08008DFD9314C9

View file

@ -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)