From 2dec44bfd8b751af73cd26c7dd5b4a08c44d0b35 Mon Sep 17 00:00:00 2001 From: Varun Chawla <34209028+veeceey@users.noreply.github.com> Date: Sun, 8 Feb 2026 23:07:12 -0800 Subject: [PATCH] =?utf8?q?=E2=9C=8F=EF=B8=8F=20Fix=20typos=20in=20inline?= =?utf8?q?=20comment=20in=20`expression.py`=20(#1747)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fix typos in expression.py comment Fixed two typos in the comment on line 47: - "operatos" -> "operators" - "expresion" -> "expression" The comment now correctly reads: "Redefine operators that would only take a column expression..." --- sqlmodel/sql/expression.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlmodel/sql/expression.py b/sqlmodel/sql/expression.py index 72d7b1de..69a20d28 100644 --- a/sqlmodel/sql/expression.py +++ b/sqlmodel/sql/expression.py @@ -44,7 +44,7 @@ _T = TypeVar("_T") _TypeEngineArgument = Union[type[TypeEngine[_T]], TypeEngine[_T]] -# Redefine operatos that would only take a column expresion to also take the (virtual) +# Redefine operators that would only take a column expression to also take the (virtual) # types of Pydantic models, e.g. str instead of only Mapped[str]. -- 2.47.3