Prechádzať zdrojové kódy

Fixed typo in docs/howto/custom-model-fields.txt.

Tim Graham 10 rokov pred
rodič
commit
99561eef26
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      docs/howto/custom-model-fields.txt

+ 1 - 1
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)