]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fix typo SQLAchemy -> SQLAlchemy
authorFederico Caselli <cfederico87@gmail.com>
Mon, 27 Apr 2020 19:10:32 +0000 (21:10 +0200)
committerFederico Caselli <cfederico87@gmail.com>
Mon, 27 Apr 2020 19:10:32 +0000 (21:10 +0200)
Change-Id: If03ccc2c2bec1c48eb6ed26091e1588b3b46e781

.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/question.md
doc/build/changelog/migration_04.rst
doc/build/changelog/migration_13.rst

index dd9b9cdbea3cd67d8373d0b8ed9fcb1aa7516503..6c85f930aa7e720cd4f42607987580ef35949cb8 100644 (file)
@@ -30,7 +30,7 @@ See also [Reporting Bugs](https://www.sqlalchemy.org/participate.html#bugs) on t
 **Versions.**
  - OS: 
  - Python:
- - SQLAchemy:
+ - SQLAlchemy:
  - Database:
  - DBAPI:
 
index 5a4118ee9e7d23bdd834d1b5a68c938074dd6898..dd1c62b9dc5085dfcc4c99bb8fa64b6680d7fea5 100644 (file)
@@ -1,6 +1,6 @@
 ---
 name: Question
-about: Question regarding SQLAchemy features
+about: Question regarding SQLAlchemy features
 title: ''
 labels: requires triage
 assignees: ''
index c56c3c213dcedaa4022001dbe78afe00c3aafc80..12727c0a79761e0469191b2238be787abee9ae4e 100644 (file)
@@ -45,8 +45,8 @@ they'll work there too.
 Module Imports
 ==============
 
-In 0.3, "``from sqlachemy import *``" would import all of
-sqlachemy's sub-modules into your namespace. Version 0.4 no
+In 0.3, "``from sqlalchemy import *``" would import all of
+sqlalchemy's sub-modules into your namespace. Version 0.4 no
 longer imports sub-modules into the namespace. This may mean
 you need to add extra imports into your code.
 
index 7e6c62ed0d6c1fa8a55bb8ccf5d334b5b4f0f902..78ac21fb540527ede5814a01528c646b9642b760 100644 (file)
@@ -1666,7 +1666,7 @@ New parameters to affect IDENTITY start and increment, use of Sequence deprecate
 ---------------------------------------------------------------------------------
 
 SQL Server as of SQL Server 2012 now supports sequences with real
-``CREATE SEQUENCE`` syntax.  In :ticket:`4235`, SQLAchemy will add support for
+``CREATE SEQUENCE`` syntax.  In :ticket:`4235`, SQLAlchemy will add support for
 these using :class:`.Sequence` in the same way as for any other dialect.
 However, the current situation is that :class:`.Sequence` has been repurposed
 on SQL Server specifically in order to affect the "start" and "increment"