diff options
author | Thomas Grainger <tagrain@gmail.com> | 2020-11-10 05:49:59 -0500 |
---|---|---|
committer | sqla-tester <sqla-tester@sqlalchemy.org> | 2020-11-10 05:49:59 -0500 |
commit | 585e38cd4317f41d1cf1fa384b094b64f72fe0f8 (patch) | |
tree | c05a151376e7e784dfb69953c23af633a88840dc /lib/sqlalchemy/dialects/postgresql/asyncpg.py | |
parent | b3f2f08f4870877d689b987747d7db5baa7aca75 (diff) | |
download | sqlalchemy-585e38cd4317f41d1cf1fa384b094b64f72fe0f8.tar.gz |
s/craete/create/g
<!-- Provide a general summary of your proposed changes in the Title field above -->
### Description
it's a typo fix
### Checklist
<!-- go over following points. check them with an `x` if they do apply, (they turn into clickable checkboxes once the PR is submitted, so no need to do everything at once)
-->
This pull request is:
- [x] A documentation / typographical error fix
- Good to go, no issue or tests are needed
- [ ] A short code fix
- please include the issue number, and create an issue if none exists, which
must include a complete example of the issue. one line code fixes without an
issue and demonstration will not be accepted.
- Please include: `Fixes: #<issue number>` in the commit message
- please include tests. one line code fixes without tests will not be accepted.
- [ ] A new feature implementation
- please include the issue number, and create an issue if none exists, which must
include a complete example of how the feature would look.
- Please include: `Fixes: #<issue number>` in the commit message
- please include tests.
**Have a nice day!**
Closes: #5689
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/5689
Pull-request-sha: 3823b2552da2a7b7a345979ad6283d848c0ec7a5
Change-Id: I170e7bea60182ebec8867499b2ea171d813fc49a
Diffstat (limited to 'lib/sqlalchemy/dialects/postgresql/asyncpg.py')
-rw-r--r-- | lib/sqlalchemy/dialects/postgresql/asyncpg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/dialects/postgresql/asyncpg.py b/lib/sqlalchemy/dialects/postgresql/asyncpg.py index 7d679731b..569024790 100644 --- a/lib/sqlalchemy/dialects/postgresql/asyncpg.py +++ b/lib/sqlalchemy/dialects/postgresql/asyncpg.py @@ -28,7 +28,7 @@ The dialect can also be run as a "synchronous" dialect within the an ad-hoc event loop. This mode of operation is of **limited use** and is for special testing scenarios only. The mode can be enabled by adding the SQLAlchemy-specific flag ``async_fallback`` to the URL -in conjunction with :func:`_sa.craete_engine`:: +in conjunction with :func:`_sa.create_engine`:: # for testing purposes only; do not use in production! engine = create_engine("postgresql+asyncpg://user:pass@hostname/dbname?async_fallback=true") |