summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timgraham@google.com>2012-06-20 19:13:35 -0400
committerTim Graham <timgraham@google.com>2012-06-27 18:43:14 -0400
commit3631a028e2d8eef9ade7b174d9cbe1440d4acfad (patch)
treeaea56617063687fa059ec360f4b7767712f3ad35 /docs
parentff6ee5f06c2850f098863d4a747069e10727293e (diff)
[1.4.X] Fixed #18369 - Fixed argument name in render() function; thanks qsolo825@ for the report.
Backport of 1cf8287e3a from master
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/http/shortcuts.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt
index 9c05c6e5e9..cce0bb45c1 100644
--- a/docs/topics/http/shortcuts.txt
+++ b/docs/topics/http/shortcuts.txt
@@ -15,7 +15,7 @@ introduce controlled coupling for convenience's sake.
``render``
==========
-.. function:: render(request, template[, dictionary][, context_instance][, content_type][, status][, current_app])
+.. function:: render(request, template_name[, dictionary][, context_instance][, content_type][, status][, current_app])
.. versionadded:: 1.3
@@ -32,7 +32,7 @@ Required arguments
``request``
The request object used to generate this response.
-``template``
+``template_name``
The full name of a template to use or sequence of template names.
Optional arguments