From aa1397f2c0f4c173af9441d06b8683320c443304 Mon Sep 17 00:00:00 2001 From: Corto Date: Mon, 28 Oct 2024 09:48:00 +0800 Subject: [PATCH] maths -> math --- src/lib.rs | 2 +- src/{maths.rs => math.rs} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{maths.rs => math.rs} (100%) diff --git a/src/lib.rs b/src/lib.rs index a3da5ed..5d2b70f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ pub use { std::str::FromStr, }; -pub mod maths; +pub mod math; pub mod pda; pub mod types; diff --git a/src/maths.rs b/src/math.rs similarity index 100% rename from src/maths.rs rename to src/math.rs