summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-08-15 07:18:04 -0400
committerTim Graham <timograham@gmail.com>2014-08-15 07:18:04 -0400
commit99561eef26b75947891929a2b7d5b2c605aa2456 (patch)
treea44310cd4ae72d44d402f530edec435ee48b5b47 /docs
parent12adcd505ebe8159cf4644cfa8d393b15ca9d5ea (diff)
Fixed typo in docs/howto/custom-model-fields.txt.
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 75d14e61ec..5a6047c58f 100644
--- a/docs/howto/custom-model-fields.txt
+++ b/docs/howto/custom-model-fields.txt
@@ -595,7 +595,7 @@ passed as the ``connection`` parameter. This allows you to use
backend-specific conversion logic if it is required.
For example, Django uses the following method for its
-:class:``~models.BinaryField``::
+:class:`BinaryField`::
def get_db_prep_value(self, value, connection, prepared=False):
value = super(BinaryField, self).get_db_prep_value(value, connection, prepared)