diff --git a/grid.py b/grid.py index d05f0e6..8e6213c 100644 --- a/grid.py +++ b/grid.py @@ -7,7 +7,7 @@ def __init__(self, x_dim, y_dim, connect8=True): self.y_dim = y_dim # First make an element for each row (height of grid) self.cells = [0] * y_dim - # Go through each element and replace with row (width of grid) + # Go through each element and replace with row (width of grid) for i in range(y_dim): self.cells[i] = [0] * x_dim # will this be an 8-connected graph or 4-connected?