diff --git a/docs/ref/contrib/comments/example.txt b/docs/ref/contrib/comments/example.txt
index 8de953f..3aa3123 100644
a
|
b
|
|
1 | 1 | .. highlightlang:: html+django |
2 | 2 | |
3 | 3 | =========================================== |
4 | | Example of using the in-built comments app |
| 4 | Example of using the built-in comments app |
5 | 5 | =========================================== |
6 | 6 | |
7 | 7 | Follow 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
|
69 | 69 | display the comments template available under your ``comments/form.html``. |
70 | 70 | The other method gives you a chance to customize the form. |
71 | 71 | |
72 | | The first method makes use of the :ttag:`render_comment_form` tag. It's usage |
| 72 | The first method makes use of the :ttag:`render_comment_form` tag. Its usage |
73 | 73 | too is similar to the other three tags we have discussed above:: |
74 | 74 | |
75 | 75 | {% render_comment_form for entry %} |
… |
… |
Feeds
|
138 | 138 | ===== |
139 | 139 | |
140 | 140 | Suppose you want to export a :doc:`feed </ref/contrib/syndication>` of the |
141 | | latest comments, you can use the in-built :class:`LatestCommentFeed`. Just |
| 141 | latest comments, you can use the built-in :class:`LatestCommentFeed`. Just |
142 | 142 | enable it in your project's ``urls.py``: |
143 | 143 | |
144 | 144 | .. code-block:: python |
… |
… |
Moderation
|
181 | 181 | |
182 | 182 | Now that we have the comments framework working, we might want to have some |
183 | 183 | moderation setup to administer the comments. The comments framework comes |
184 | | in-built with :doc:`generic comment moderation |
| 184 | built-in with :doc:`generic comment moderation |
185 | 185 | </ref/contrib/comments/moderation>`. The comment moderation has the following |
186 | 186 | features (all of which or only certain can be enabled): |
187 | 187 | |