diff options
| author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2018-07-06 17:56:13 +0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2018-07-06 08:56:37 -0400 |
| commit | 9dd66ba5d52cae27e0c68a55a873c98765568bd8 (patch) | |
| tree | 1be56defd3688c381ed5b4ebec5caaaf17358fd0 /docs | |
| parent | 1645471348ac6012ad9444742f6e572ecf7c993b (diff) | |
[2.0.x] Corrected cached_property() signature in docs.
Backport of 82b9708c6f77d1a4b7b4236234065799370be245 from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/utils.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt index 636f9cd331..9410202587 100644 --- a/docs/ref/utils.txt +++ b/docs/ref/utils.txt @@ -441,7 +441,7 @@ https://web.archive.org/web/20110718035220/http://diveintomark.org/archives/2004 .. module:: django.utils.functional :synopsis: Functional programming tools. -.. class:: cached_property(object, name) +.. class:: cached_property(func, name=None) The ``@cached_property`` decorator caches the result of a method with a single ``self`` argument as a property. The cached result will persist |
