From 8df1a95fa8db174cb030ac6143cdf3396c83c751 Mon Sep 17 00:00:00 2001 From: Nathan Hartman <59230071+hartmannathan@users.noreply.github.com> Date: Mon, 10 Jan 2022 19:00:47 -0500 Subject: [PATCH] Fix typo in comment: s/simluate/simulate/ --- src/extras/physac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extras/physac.h b/src/extras/physac.h index aadc76988..3ab427acd 100644 --- a/src/extras/physac.h +++ b/src/extras/physac.h @@ -5,7 +5,7 @@ * DESCRIPTION: * * Physac is a small 2D physics engine written in pure C. The engine uses a fixed time-step thread loop -* to simluate physics. A physics step contains the following phases: get collision information, +* to simulate physics. A physics step contains the following phases: get collision information, * apply dynamics, collision solving and position correction. It uses a very simple struct for physic * bodies with a position vector to be used in any 3D rendering API. *