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];