SDL: snake: improve comment

From 7f14eb33c61df445b22a7dfb4c71e4756b93bc5e Mon Sep 17 00:00:00 2001
From: ChillerDragon <[EMAIL REDACTED]>
Date: Fri, 15 Nov 2024 12:57:22 +0800
Subject: [PATCH] snake: improve comment

---
 examples/game/01-snake/snake.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/game/01-snake/snake.c b/examples/game/01-snake/snake.c
index 6df07a1f51432..8642c7f5b5443 100644
--- a/examples/game/01-snake/snake.c
+++ b/examples/game/01-snake/snake.c
@@ -1,6 +1,6 @@
 /*
  * Logic implementation of the Snake game. It is designed to efficiently
- * represent in memory the state of the game.
+ * represent the state of the game in memory.
  *
  * This code is public domain. Feel free to use it for any purpose!
  */