aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide
diff options
context:
space:
mode:
authorTom Christie2014-02-04 08:41:55 -0800
committerTom Christie2014-02-04 08:41:55 -0800
commit74fc6d8f49a180c04229f002d3a3eb44fe8b1cab (patch)
treed154cc3038467e307a9e229465f73bd01858248c /docs/api-guide
parentb0460a4a58fb193cf6184cc329e95a42c2882d84 (diff)
parentba8a0bac538adc8d6897ece14648e03ce7441b24 (diff)
downloaddjango-rest-framework-74fc6d8f49a180c04229f002d3a3eb44fe8b1cab.tar.bz2
Merge pull request #1387 from RicterZ/patch-1
Fixed a bug backticks
Diffstat (limited to 'docs/api-guide')
-rwxr-xr-xdocs/api-guide/generic-views.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/generic-views.md b/docs/api-guide/generic-views.md
index e23b2c74..fb927ea8 100755
--- a/docs/api-guide/generic-views.md
+++ b/docs/api-guide/generic-views.md
@@ -119,7 +119,7 @@ For example:
self.check_object_permissions(self.request, obj)
return obj
-Note that if your API doesn't include any object level permissions, you may optionally exclude the ``self.check_object_permissions, and simply return the object from the `get_object_or_404` lookup.
+Note that if your API doesn't include any object level permissions, you may optionally exclude the `self.check_object_permissions`, and simply return the object from the `get_object_or_404` lookup.
#### `get_filter_backends(self)`