Skip to content

Commit

Permalink
Correct spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
lefticus committed May 1, 2024
1 parent 3e9274b commit 0013c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parallel_algorithms/game_of_life.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ template <std::size_t Width, std::size_t Height> struct GameBoard {
Point{-1, -1}, Point{0, -1}, Point{1, -1}, Point{-1, 0},
Point{1, 0}, Point{-1, 1}, Point{0, 1}, Point{1, 1}};

// Takes the input point, wraps it veritcally/horizontally and takes
// Takes the input point, wraps it vertically/horizontally and takes
// the new location and maps that to the linear address of the point
// in the underlying array
[[nodiscard]] constexpr static std::size_t index(Point p) {
Expand Down

0 comments on commit 0013c1f

Please sign in to comment.