Browse Source

Made a version condition less confusing.

Fixed #18762 (again).
Aymeric Augustin 12 years ago
parent
commit
98b6ce60f4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/intro/tutorial03.txt

+ 1 - 1
docs/intro/tutorial03.txt

@@ -555,7 +555,7 @@ with the :ttag:`url` template tag:
 
     If ``{% url 'polls.views.detail' poll.id %}`` (with quotes) doesn't work,
     but ``{% url polls.views.detail poll.id %}`` (without quotes) does, that
-    means you're using a version of Django ≤ 1.4. In this case, add the
+    means you're using a version of Django < 1.5. In this case, add the
     following declaration at the top of your template:
 
     .. code-block:: html+django