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
# 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):