]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Apply suggestions
authorMin ho Kim <minho42@gmail.com>
Sun, 7 Jul 2019 13:07:29 +0000 (23:07 +1000)
committerMin ho Kim <minho42@gmail.com>
Sun, 7 Jul 2019 13:07:29 +0000 (23:07 +1000)
jinja2/bccache.py
jinja2/runtime.py

index ec980ae268bb421daac4bb4d24cf57a0a71466bb..69a7da2ab73d2487971e4151458e579ceb791082 100644 (file)
@@ -3,9 +3,8 @@
     jinja2.bccache
     ~~~~~~~~~~~~~~
 
-    This module implements the bytecode cache system Jinja is optionally
-    using.  This is useful if you have very complex template situations and
-    the compilation of all those templates slow down your application too
+    This module implements the bytecode cache system that Jinja optionally uses.  This is useful if you have very complex template situations and
+    the compilation of all those templates slows down your application too
     much.
 
     Situations where this is useful are often forking web applications that
index 026347e7e5cf6e10f62f28e07eaaf9ea04fb20e9..026ddd84ebde5d214c726d781a839a8237a010e3 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 anyways.  Worst case here is
+        # argument to callables otherwise anyway.  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):