summaryrefslogtreecommitdiff
path: root/docs/howto/custom-model-fields.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-04-08 08:35:35 -0400
committerTim Graham <timograham@gmail.com>2015-04-08 08:35:35 -0400
commit6d7784a7b994eb8287ec851b22acb5170e77a90a (patch)
tree764d0b96796540a563f9361b53fdfb5574cda1e1 /docs/howto/custom-model-fields.txt
parent3acefcefeb5283473ac35d7e842027814d57d574 (diff)
Fixed #24602 -- Removed obsolete reference to __metaclass__ in custom model fields docs.
Thanks schinckel for the report.
Diffstat (limited to 'docs/howto/custom-model-fields.txt')
-rw-r--r--docs/howto/custom-model-fields.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/howto/custom-model-fields.txt b/docs/howto/custom-model-fields.txt
index 58c81a70f4..95c1cd68ab 100644
--- a/docs/howto/custom-model-fields.txt
+++ b/docs/howto/custom-model-fields.txt
@@ -333,10 +333,10 @@ incorporate arguments of the field. For example, the description for
Useful methods
--------------
-Once you've created your :class:`~django.db.models.Field` subclass and set up
-the ``__metaclass__``, you might consider overriding a few standard methods,
-depending on your field's behavior. The list of methods below is in
-approximately decreasing order of importance, so start from the top.
+Once you've created your :class:`~django.db.models.Field` subclass, you might
+consider overriding a few standard methods, depending on your field's behavior.
+The list of methods below is in approximately decreasing order of importance,
+so start from the top.
.. _custom-database-types: