about summary refs log tree commit diff stats
path: root/lib/Octans/Puzzle.rakumod
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Octans/Puzzle.rakumod')
-rw-r--r--lib/Octans/Puzzle.rakumod2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Octans/Puzzle.rakumod b/lib/Octans/Puzzle.rakumod
index e88a74a..8e184f8 100644
--- a/lib/Octans/Puzzle.rakumod
+++ b/lib/Octans/Puzzle.rakumod
@@ -19,7 +19,7 @@ class Puzzle is export {
     method gray-squares() { @!gray-squares; }
 
     # Given $y, $x where $y is row index & $x is column index,
-    # is-gray-square returns if the cell is a gray square.
+    # is-gray-square returns if the square is a gray square.
     method is-gray-square(Int $y, Int $x) {
         return so @!gray-squares.grep(($y, $x));
     }