From 988750a3c6c88b85778e7359ecd83f7955234427 Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Wed, 22 Jan 2025 14:52:47 -0800
Subject: [PATCH] physics: typo

---
 engine/physics/src/lib.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/engine/physics/src/lib.rs b/engine/physics/src/lib.rs
index f78e037..9b7db87 100644
--- a/engine/physics/src/lib.rs
+++ b/engine/physics/src/lib.rs
@@ -25,7 +25,7 @@ const LATEST_COMPATIBLE_VERSION:[u32;1+VERSION.0 as usize]=const{
 
 	let mut input_version=0;
 	while input_version<compat.len(){
-		// compatible version must be greater that or equal to the input version
+		// compatible version must be greater than or equal to the input version
 		assert!(input_version as u32<=compat[input_version]);
 		// compatible version must be a version that exists
 		assert!(compat[input_version]<=VERSION.0);