Ticket #17572: 17572.diff

File 17572.diff, 1.7 KB (added by Claude Paroz, 13 years ago)

Fix grammar errors

  • docs/ref/contrib/comments/example.txt

    diff --git a/docs/ref/contrib/comments/example.txt b/docs/ref/contrib/comments/example.txt
    index 8de953f..3aa3123 100644
    a b  
    11.. highlightlang:: html+django
    22
    33===========================================
    4 Example of using the in-built comments app
     4Example of using the built-in comments app
    55===========================================
    66
    77Follow the first three steps of the quick start guide in the
    comments. There are two ways of doing so. The first is when you want to  
    6969display the comments template available under your ``comments/form.html``.
    7070The other method gives you a chance to customize the form.
    7171
    72 The first method makes use of the :ttag:`render_comment_form` tag. It's usage
     72The first method makes use of the :ttag:`render_comment_form` tag. Its usage
    7373too is similar to the other three tags we have discussed above::
    7474
    7575   {% render_comment_form for entry %}
    Feeds  
    138138=====
    139139
    140140Suppose you want to export a :doc:`feed </ref/contrib/syndication>` of the
    141 latest comments, you can use the in-built :class:`LatestCommentFeed`. Just
     141latest comments, you can use the built-in :class:`LatestCommentFeed`. Just
    142142enable it in your project's ``urls.py``:
    143143
    144144.. code-block:: python
    Moderation  
    181181
    182182Now that we have the comments framework working, we might want to have some
    183183moderation setup to administer the comments. The comments framework comes
    184 in-built with :doc:`generic comment moderation
     184built-in with :doc:`generic comment moderation
    185185</ref/contrib/comments/moderation>`. The comment moderation has the following
    186186features (all of which or only certain can be enabled):
    187187
Back to Top