From 7f14eb33c61df445b22a7dfb4c71e4756b93bc5e Mon Sep 17 00:00:00 2001 From: ChillerDragon 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 6df07a1f5..8642c7f5b 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! */