]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
fix typos (#1769) main
authorFardin Alizadeh <fardinalizadeh3007@gmail.com>
Mon, 22 Dec 2025 19:47:52 +0000 (23:17 +0330)
committerGitHub <noreply@github.com>
Mon, 22 Dec 2025 19:47:52 +0000 (20:47 +0100)
alembic/ddl/postgresql.py
docs/build/api/index.rst
docs/build/changelog.rst
tests/test_script_production.py
tools/toxnox.py

index 90ecf70c19eaf3240ed9722786c91efb3129cc66..8d036c64044ee8a57d0148a87dbb7440a29bcf5a 100644 (file)
@@ -319,7 +319,7 @@ class PostgresqlImpl(DefaultImpl):
         self, item: Union[Index, UniqueConstraint]
     ) -> Tuple[Any, ...]:
         # only the positive case is returned by sqlalchemy reflection so
-        # None and False are threated the same
+        # None and False are treated the same
         if item.dialect_kwargs.get("postgresql_nulls_not_distinct"):
             return ("nulls_not_distinct",)
         return ()
index 50a543b59352d6940404311b3e0127da42a48926..e534464900ab6211931feff7835b10faa04c03b4 100644 (file)
@@ -5,7 +5,7 @@ API Details
 ===========
 
 Alembic's internal API has many public integration points that can be used
-to extend Alembic's functionality as well as to re-use its functionality
+to extend Alembic's functionality as well as to reuse its functionality
 in new ways.   As the project has grown, more APIs are created and exposed
 for this purpose.
 
index 79cfdf968ab41ebf3ac834a5013b032a28d1e183..319dc9716cec0c86da728b21aadaa1b365d7f1ed 100644 (file)
@@ -874,7 +874,7 @@ Changelog
         :tickets: 1261
 
         Fixed format string logged when running a post write hook
-        Pull request curtesy of Mathieu Défosse.
+        Pull request courtesy of Mathieu Défosse.
 
     .. change::
         :tags: feature, operations
@@ -5762,7 +5762,7 @@ Changelog
 
       The command line runner has been organized
       into a reusable CommandLine object, so that other
-      front-ends can re-use the argument parsing built
+      front-ends can reuse the argument parsing built
       in.
 
     .. change::
index 853767dc805f812eec117705aaac7d4d4a8d6e3e..b8a3c8c6c2f5f55a17880ba8138419bcf141972c 100644 (file)
@@ -664,7 +664,7 @@ def downgrade():
 
     def test_programmatic_command_option(self):
         def process_revision_directives(context, rev, generate_revisions):
-            generate_revisions[0].message = "test programatic"
+            generate_revisions[0].message = "test programmatic"
             generate_revisions[0].upgrade_ops = ops.UpgradeOps(
                 ops=[
                     ops.CreateTableOp(
index 295627a49c638dbc753c4c155f2a6a3f5b1b155d..2bdcebd301a144ffcc1691edb09c5525f36c23c0 100644 (file)
@@ -2,7 +2,7 @@
 sections for nox tests, which include tags that indicate various combinations
 of those parameters in such a way that it's somewhat similar to how
 we were using the tox project; where individual dash-separated tags could
-be added to add more specificity to the suite configuation, or omitting them
+be added to add more specificity to the suite configuration, or omitting them
 would fall back to defaults.