From f23fed5002d82d00cf5a886871125c96e36253d1 Mon Sep 17 00:00:00 2001 From: Chris Foster Date: Wed, 1 Feb 2023 19:54:18 -0500 Subject: [PATCH] Fixed typo. (#2156) --- src/macros/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros/mod.rs b/src/macros/mod.rs index df8588e0fe..802c5def96 100644 --- a/src/macros/mod.rs +++ b/src/macros/mod.rs @@ -733,7 +733,7 @@ macro_rules! query_file_scalar_unchecked ( /// /// This is because our ability to tell the compiler to watch external files for changes /// from a proc-macro is very limited. The compiler by default only re-runs proc macros when -/// one ore more source files have changed, because normally it shouldn't have to otherwise. SQLx is +/// one or more source files have changed, because normally it shouldn't have to otherwise. SQLx is /// just weird in that external factors can change the output of proc macros, much to the chagrin of /// the compiler team and IDE plugin authors. ///