From 0013c1f525eb8b50361377177b28604334eb4a41 Mon Sep 17 00:00:00 2001 From: Jason Turner Date: Tue, 30 Apr 2024 18:42:28 -0600 Subject: [PATCH] Correct spelling --- parallel_algorithms/game_of_life.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parallel_algorithms/game_of_life.cpp b/parallel_algorithms/game_of_life.cpp index 8af3033..0cad275 100644 --- a/parallel_algorithms/game_of_life.cpp +++ b/parallel_algorithms/game_of_life.cpp @@ -123,7 +123,7 @@ template 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) {