From 1dfa567a23a1b81eb90b29ff250337a679a40dfa Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Sat, 18 Jun 2011 08:48:25 +0000 Subject: [PATCH] Fixed typos introduced in r16430 and r16431. Thanks, magopian. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16433 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/templates/builtins.txt | 2 +- docs/topics/forms/formsets.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index ed8e234c294..24e650e16b4 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -1512,7 +1512,7 @@ If ``value`` is ``Tom & Jerry``, the output will be ``Tom & Jerry``. However, ampersands used in named entities and numeric character references will not be replaced. For example, if ``value`` is ``Café``, the output -will *not* be ``Café&`` but remain ``Café``. This means that +will *not* be ``Café`` but remain ``Café``. This means that in some edge cases, such as acronyms followed by semicolons, this filter will not replace ampersands that need replacing. For example, if ``value`` is ``Contact the R&D;``, the output will remain unchanged because ``&D;`` diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt index 3faf6e584fb..7ca173d14b2 100644 --- a/docs/topics/forms/formsets.txt +++ b/docs/topics/forms/formsets.txt @@ -442,7 +442,7 @@ If you manually render fields in the template, you can render
  • {{ form.title }}
  • {% if formset.can_delete %}
  • {{ form.DELETE }}
  • - {% enif %} + {% endif %} {% endfor %}