From 1a40b26a0080e2a3a2cd9ea52d768df5dc150690 Mon Sep 17 00:00:00 2001
From: Arek <ar@ar76.eu>
Date: Tue, 11 Feb 2025 22:13:02 +0100
Subject: [PATCH] doc: Fixed comment typos

---
 cmd/gol/gol.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/gol/gol.go b/cmd/gol/gol.go
index f176358..dd585cd 100644
--- a/cmd/gol/gol.go
+++ b/cmd/gol/gol.go
@@ -32,7 +32,7 @@ func main() {
 }
 
 func game() {
-	// arenas - front one is printent, then new state is calculated into back one
+	// arenas - front one is printed, then new state is calculated into the back one
 	// next front and back are switched
 	front := gol.New(20, 40)
 	back := gol.New(20, 40)