]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Fix async doc
authorDavid Brochart <david.brochart@gmail.com>
Fri, 7 Feb 2020 12:30:35 +0000 (13:30 +0100)
committerDavid Lord <davidism@gmail.com>
Sat, 8 Feb 2020 19:08:04 +0000 (11:08 -0800)
docs/api.rst

index 871b326f519a60cbe852db5683a519f4c71193ff..f342ebee0df2f9a0d52012ea2ac16ba0da9bcfb9 100644 (file)
@@ -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