]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Fix typo
authorMin ho Kim <minho42@gmail.com>
Sat, 6 Jul 2019 23:38:28 +0000 (09:38 +1000)
committerMin ho Kim <minho42@gmail.com>
Sat, 6 Jul 2019 23:38:28 +0000 (09:38 +1000)
jinja2/bccache.py
jinja2/runtime.py

index 080e527cabf33b0422f6b8e5b172c17d7c039d39..ec980ae268bb421daac4bb4d24cf57a0a71466bb 100644 (file)
@@ -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
index 3f0a8a4c069da8bf4f35871fa384690a26980e2f..026347e7e5cf6e10f62f28e07eaaf9ea04fb20e9 100644 (file)
@@ -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):