From 1cf21f8a134a97337526ae91849a3f1e9744b112 Mon Sep 17 00:00:00 2001 From: p9s Date: Thu, 27 Jan 2022 16:52:04 +0800 Subject: [PATCH] Update macros.rs typo fix --- src/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros.rs b/src/macros.rs index a35a119a03..d05c7bb1e0 100644 --- a/src/macros.rs +++ b/src/macros.rs @@ -107,7 +107,7 @@ /// /// In Postgres and MySQL you may also use `IS [NOT] DISTINCT FROM` to compare with a possibly /// `NULL` value. In MySQL `IS NOT DISTINCT FROM` can be shortened to `<=>`. -/// In SQLite you can us `IS` or `IS NOT`. Note that operator precedence may be different. +/// In SQLite you can use `IS` or `IS NOT`. Note that operator precedence may be different. /// /// ## Nullability: Output Columns /// In most cases, the database engine can tell us whether or not a column may be `NULL`, and