summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-07-02 10:16:42 +0200
committerClaude Paroz <claude@2xlibre.net>2012-07-02 10:16:42 +0200
commit784d0c261c76535dc760bc8d76793d92f35c1513 (patch)
treed463d60f5690b2ba222683baf078e55d86d89c00 /docs
parent2cd4cf58d32c5d4b163a466f608dff31bac66b87 (diff)
Replaced 'return' by 'raise' in custom model field docs
Thanks Simon Charette for noticing it. Refs #11162.
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/custom-model-fields.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/custom-model-fields.txt b/docs/howto/custom-model-fields.txt
index 8b4c2303ab..706cc25129 100644
--- a/docs/howto/custom-model-fields.txt
+++ b/docs/howto/custom-model-fields.txt
@@ -440,7 +440,7 @@ database, so we need to be able to process strings and ``Hand`` instances in
Notice that we always return a ``Hand`` instance from this method. That's the
Python object type we want to store in the model's attribute. If anything is
-going wrong during value conversion, you should return a
+going wrong during value conversion, you should raise a
:exc:`~django.core.exceptions.ValidationError` exception.
**Remember:** If your custom field needs the :meth:`to_python` method to be