From: Armin Ronacher Date: Mon, 2 Jan 2017 23:10:56 +0000 (+0100) Subject: Fixed a typo X-Git-Tag: 2.9~30^2~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d7f0996885eaf88b84b80220df98e4a01e99166;p=thirdparty%2Fjinja.git Fixed a typo --- diff --git a/jinja2/compiler.py b/jinja2/compiler.py index 5a2b7e0e..846ade15 100644 --- a/jinja2/compiler.py +++ b/jinja2/compiler.py @@ -841,7 +841,7 @@ class CodeGenerator(NodeVisitor): 'update((%s))' % ', '.join(imap(repr, discarded_names))) def visit_For(self, node, frame): - # TODO: this shoudl really use two frames: one for the loop body + # TODO: this should really use two frames: one for the loop body # and a separate one for the loop else block. loop_frame = frame.inner()