From 5b4b2aafef28214629e4e6d8fb639de575551858 Mon Sep 17 00:00:00 2001 From: Chris Foster Date: Sun, 16 Oct 2022 13:35:47 -0400 Subject: [PATCH] Fixed typo. --- 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. ///