From fc13a697b41568993ba02b7c52bb863456af6c84 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 6 Jun 2017 11:24:44 -0400 Subject: [PATCH] Fixed typo in docs/ref/class-based-views/mixins-single-object.txt. --- docs/ref/class-based-views/mixins-single-object.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/class-based-views/mixins-single-object.txt b/docs/ref/class-based-views/mixins-single-object.txt index 9100e4a104..2801b9964b 100644 --- a/docs/ref/class-based-views/mixins-single-object.txt +++ b/docs/ref/class-based-views/mixins-single-object.txt @@ -100,7 +100,7 @@ Single object mixins .. method:: get_context_data(**kwargs) - Returns context data for displaying the list of objects. + Returns context data for displaying the object. The base implementation of this method requires that the ``self.object`` attribute be set by the view (even if ``None``). Be sure to do this if