From: Federico Caselli Date: Thu, 26 Jun 2025 20:05:10 +0000 (+0200) Subject: fix typos in comment X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c02fe628667d36156abe26a34af9313a97565b8;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix typos in comment Change-Id: I84edcb6100ee9c072c68970cd476f02d48f7f7ac --- diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index aa45d89891..75e7670c1f 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -4554,8 +4554,8 @@ class PGDialect(default.DefaultDialect): ).label("element"), (idx_sq.c.attnum == 0).label("is_expr"), # since it's converted to array cast it to bigint (oid are - # "unsigned four-byte integer") to make it earier for - # dialects to iterpret + # "unsigned four-byte integer") to make it easier for + # dialects to interpret idx_sq.c.att_opclass.cast(BIGINT), ) .select_from(idx_sq)