Skip to content

Commit 0b6e08c

Browse files
cell_index_test: Fix typo (#125)
Closes #124.
1 parent f57e2fe commit 0b6e08c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

s2/cell_index_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ func verifyCellIndexContents(t *testing.T, desc string, index *CellIndex) {
214214
// Verify that the cell does not intersect the range.
215215
if x.cellID.RangeMin() <= r.LimitID().Prev() &&
216216
x.cellID.RangeMax() >= r.StartID() {
217-
t.Errorf("%s: CellID does not interect the current range: %v <= %v && %v >= %v", desc, x.cellID.RangeMin(), r.LimitID().Prev(), x.cellID.RangeMax(), r.StartID())
217+
t.Errorf("%s: CellID does not intersect the current range: %v <= %v && %v >= %v", desc, x.cellID.RangeMin(), r.LimitID().Prev(), x.cellID.RangeMax(), r.StartID())
218218
}
219219
}
220220
}

0 commit comments

Comments
 (0)