From 8cfe37c6b84001b7114bdda6d1a07ddf539d11dd Mon Sep 17 00:00:00 2001 From: cathy0612 Date: Mon, 9 Mar 2020 23:36:37 +0800 Subject: [PATCH] misspelled --- docs/06 In Practice/2D-Game/06 Particles.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/06 In Practice/2D-Game/06 Particles.md b/docs/06 In Practice/2D-Game/06 Particles.md index 4821aa2..91329db 100644 --- a/docs/06 In Practice/2D-Game/06 Particles.md +++ b/docs/06 In Practice/2D-Game/06 Particles.md @@ -97,7 +97,7 @@ for (GLuint i = 0; i < nr_new_particles; ++i) int unusedParticle = FirstUnusedParticle(); RespawnParticle(particles[unusedParticle], object, offset); } -// Uupdate all particles +// Update all particles for (GLuint i = 0; i < nr_particles; ++i) { Particle &p = particles[i];