]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Fixed typo in template documentation 342/head
authorDavid Wilemski <david@davidwilemski.com>
Wed, 24 Aug 2011 03:14:08 +0000 (23:14 -0400)
committerDavid Wilemski <david@davidwilemski.com>
Wed, 24 Aug 2011 03:14:08 +0000 (23:14 -0400)
tornado/template.py

index 29c61c42115e93a244706b4a177e9f06ae15a495..4a88999eda30a0f7d54c9d00e30c1b273d2251e4 100644 (file)
@@ -57,7 +57,7 @@ interesting. Syntax for the templates::
 
 Unlike most other template systems, we do not put any restrictions on the
 expressions you can include in your statements. if and for blocks get
-translated exactly into Python, do you can do complex expressions like::
+translated exactly into Python, you can do complex expressions like::
 
    {% for student in [p for p in people if p.student and p.age > 23] %}
      <li>{{ escape(student.name) }}</li>