summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-02-08 21:38:30 +0100
committerGitHub <noreply@github.com>2019-02-08 21:38:30 +0100
commit25829197bb94585e94695360065ac614aa9e6a56 (patch)
tree106fb7d79bf3c8735980d3f08e24c206cf0f05e0 /docs/howto
parent22aab8662f0368b63f91f2526bdd0532524bc0fe (diff)
Removed extra characters in docs header underlines.
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/custom-model-fields.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/howto/custom-model-fields.txt b/docs/howto/custom-model-fields.txt
index bef244b22e..0a9aab4706 100644
--- a/docs/howto/custom-model-fields.txt
+++ b/docs/howto/custom-model-fields.txt
@@ -692,7 +692,7 @@ existing conversion code::
return self.get_prep_value(value)
Some general advice
---------------------
+-------------------
Writing a custom field can be a tricky process, particularly if you're doing
complex conversions between your Python types and your database and
@@ -731,7 +731,7 @@ told to use it. To do so, simply assign the new ``File`` subclass to the special
``attr_class`` attribute of the ``FileField`` subclass.
A few suggestions
-------------------
+-----------------
In addition to the above details, there are a few guidelines which can greatly
improve the efficiency and readability of the field's code.