]> git.ipfire.org Git - thirdparty/jinja.git/commitdiff
Fixed a typo
authorArmin Ronacher <armin.ronacher@active-4.com>
Mon, 2 Jan 2017 23:10:56 +0000 (00:10 +0100)
committerArmin Ronacher <armin.ronacher@active-4.com>
Tue, 3 Jan 2017 22:45:29 +0000 (23:45 +0100)
jinja2/compiler.py

index 5a2b7e0e60614612a51f5ff8351a95eb2a20a7e7..846ade15577e19c3344dcf9692483747c987a652 100644 (file)
@@ -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()