Skip to content

Commit

Permalink
i should just push this off of main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Robertson committed Jan 18, 2023
1 parent ae36dab commit 76b81a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions environment/environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ func DrawMaze(currentMaze *maze.Maze, canvas *image.Paletted) {

// Maze Clean up
log.Print(foo.String())
for u := 0; u <= len(rows); u++ {
for u := 0; u < len(rows); u++ {
rows[u] = strings.TrimSpace(rows[u])
}
// print to check
for u := 0; u <= len(rows); u++ {
for u := 0; u < len(rows); u++ {
log.Println(rows[u])
}
for y, line := range rows {
Expand Down

0 comments on commit 76b81a9

Please sign in to comment.