From: Min ho Kim Date: Sat, 6 Jul 2019 23:38:28 +0000 (+1000) Subject: Fix typo X-Git-Tag: 2.11.0~84^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99f2a6c6e59d080b297db20a48930e67115c96ea;p=thirdparty%2Fjinja.git Fix typo --- diff --git a/jinja2/bccache.py b/jinja2/bccache.py index 080e527c..ec980ae2 100644 --- a/jinja2/bccache.py +++ b/jinja2/bccache.py @@ -5,7 +5,7 @@ This module implements the bytecode cache system Jinja is optionally using. This is useful if you have very complex template situations and - the compiliation of all those templates slow down your application too + the compilation of all those templates slow down your application too much. Situations where this is useful are often forking web applications that diff --git a/jinja2/runtime.py b/jinja2/runtime.py index 3f0a8a4c..026347e7 100644 --- a/jinja2/runtime.py +++ b/jinja2/runtime.py @@ -510,7 +510,7 @@ class Macro(object): # check here. # # This is considered safe because an eval context is not a valid - # argument to callables otherwise anwyays. Worst case here is + # argument to callables otherwise anyways. Worst case here is # that if no eval context is passed we fall back to the compile # time autoescape flag. if args and isinstance(args[0], EvalContext):