summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiovanni Torres <giovtorres@users.noreply.github.com>2016-11-28 23:23:43 -0500
committerGitHub <noreply@github.com>2016-11-28 23:23:43 -0500
commitba0525d35a2923540d82e1f35402bece2cc2c36c (patch)
tree0e9ad0a182bff23e2108d66b2cde89f42570a11e
parent8efe474321a04e17cc9905cffd604e387b768259 (diff)
downloadcython-ba0525d35a2923540d82e1f35402bece2cc2c36c.tar.gz
Added missing function parameter "value"
-rw-r--r--docs/src/userguide/extension_types.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/userguide/extension_types.rst b/docs/src/userguide/extension_types.rst
index 3a9e4dc30..68c1bbf6e 100644
--- a/docs/src/userguide/extension_types.rst
+++ b/docs/src/userguide/extension_types.rst
@@ -283,7 +283,7 @@ when it is deleted.::
return "We don't have: %s" % self.cheeses
@cheese.setter
- def cheese(self):
+ def cheese(self, value):
self.cheeses.append(value)
@cheese.deleter