From 99f2a6c6e59d080b297db20a48930e67115c96ea Mon Sep 17 00:00:00 2001 From: Min ho Kim Date: Sun, 7 Jul 2019 09:38:28 +1000 Subject: [PATCH] Fix typo --- jinja2/bccache.py | 2 +- jinja2/runtime.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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): -- 2.47.2