diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-08-18 05:43:38 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-08-18 05:43:38 +0000 |
| commit | 3b9b87792ab470041c6a2ae5094c8ae236e5d167 (patch) | |
| tree | 30de079dcbcb797cd55c026d70eb92db1b8c3b59 /docs | |
| parent | d743ccbc4b2e27a52cffa4a6c0e4b30a1eeb1651 (diff) | |
Fixed #5187 -- Minor doc tweaks. Thanks, Daniel Hahler.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5927 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/contributing.txt | 2 | ||||
| -rw-r--r-- | docs/templates_python.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/contributing.txt b/docs/contributing.txt index cce54fa485..b0df62fe99 100644 --- a/docs/contributing.txt +++ b/docs/contributing.txt @@ -286,7 +286,7 @@ Please follow these coding standards when writing code for inclusion in Django: * Mark all strings for internationalization; see the `i18n documentation`_ for details. - * In docstrings, use "action words," like so:: + * In docstrings, use "action words" such as:: def foo(): """ diff --git a/docs/templates_python.txt b/docs/templates_python.txt index 117656762f..261eaedf74 100644 --- a/docs/templates_python.txt +++ b/docs/templates_python.txt @@ -277,7 +277,7 @@ Subclassing Context: RequestContext Django comes with a special ``Context`` class, ``django.template.RequestContext``, that acts slightly differently than -the normal ``django.template.Context``. The first difference is that takes +the normal ``django.template.Context``. The first difference is that it takes an `HttpRequest object`_ as its first argument. For example:: c = RequestContext(request, { |
