✏️ Fix typos in inline comment in expression.py (#1747)

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..."
This commit is contained in:
Varun Chawla
2026-02-08 23:07:12 -08:00
committed by GitHub
parent b707f49930
commit 2dec44bfd8

View File

@@ -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].