Skip to content

Commit af5d7d0

Browse files
authored
Merge pull request #8832 from kylestarr/patch-2
Moving disclaimer comments inline
2 parents 747d07a + 24fb0e2 commit af5d7d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

getting_started/first_2d_game/03.coding_the_player.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ movement. Let's place this code at the end of the ``_process()`` function:
275275
if velocity.x != 0:
276276
$AnimatedSprite2D.animation = "walk"
277277
$AnimatedSprite2D.flip_v = false
278-
# See the note below about boolean assignment.
278+
# See the note below about the following boolean assignment.
279279
$AnimatedSprite2D.flip_h = velocity.x < 0
280280
elif velocity.y != 0:
281281
$AnimatedSprite2D.animation = "up"
@@ -287,7 +287,7 @@ movement. Let's place this code at the end of the ``_process()`` function:
287287
{
288288
animatedSprite2D.Animation = "walk";
289289
animatedSprite2D.FlipV = false;
290-
// See the note below about boolean assignment.
290+
// See the note below about the following boolean assignment.
291291
animatedSprite2D.FlipH = velocity.X < 0;
292292
}
293293
else if (velocity.Y != 0)

0 commit comments

Comments
 (0)