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