aboutsummaryrefslogtreecommitdiff
path: root/docs/api.rst
diff options
context:
space:
mode:
authorDavid Brochart <david.brochart@gmail.com>2020-02-07 13:30:35 +0100
committerDavid Lord <davidism@gmail.com>2020-02-08 11:08:04 -0800
commit7c1b535c357f484cc43091c5287a6ccd1aa45814 (patch)
treef044cc72495163eee2c64be1af8c9f4ac2df697b /docs/api.rst
parentdd5a0508c5e938b2660d6b1a74a2af6ff1a65dd5 (diff)
downloadjinja-7c1b535c357f484cc43091c5287a6ccd1aa45814.tar.gz
Fix async doc
Diffstat (limited to 'docs/api.rst')
-rw-r--r--docs/api.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api.rst b/docs/api.rst
index 871b326f..f342ebee 100644
--- a/docs/api.rst
+++ b/docs/api.rst
@@ -543,7 +543,7 @@ understand because it has some impact to what you are doing:
* template rendering will require an event loop to be set for the
current thread (``asyncio.get_event_loop`` needs to return one)
* all template generation code internally runs async generators which
- means that you will pay a performance penalty even if the non sync
+ means that you will pay a performance penalty even if the non async
methods are used!
* The sync methods are based on async methods if the async mode is
enabled which means that `render` for instance will internally invoke