From e77b9943f97c4ffc986f688dd97e2fbcb4efe2be Mon Sep 17 00:00:00 2001 From: Charles Leifer Date: Tue, 21 May 2024 10:45:31 -0500 Subject: [PATCH] Fix typo in docs, replaces #2898 --- docs/peewee/query_operators.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/peewee/query_operators.rst b/docs/peewee/query_operators.rst index fcd48f0b5..e27266b1c 100644 --- a/docs/peewee/query_operators.rst +++ b/docs/peewee/query_operators.rst @@ -117,7 +117,7 @@ complex. * Use ``|`` instead of ``or`` * Use ``~`` instead of ``not`` * Use ``.is_null()`` instead of ``is None`` or ``== None``. - * Use ``== `` and ``!=`` for comparing against ``True`` and ``False``, or + * Use ``==`` and ``!=`` for comparing against ``True`` and ``False``, or you may use the implicit value of the expression. * **Don't forget to wrap your comparisons in parentheses when using logical operators.**