From dee3946a91be2c880b5930550db681aae54b19ed Mon Sep 17 00:00:00 2001 From: Carl Meyer Date: Mon, 17 Nov 2014 16:42:54 -0700 Subject: [PATCH] Fix malformed note directives. --- docs/ref/contrib/postgres/forms.txt | 1 + docs/topics/migrations.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/ref/contrib/postgres/forms.txt b/docs/ref/contrib/postgres/forms.txt index 261cc7f4f4..fcf44ce6a5 100644 --- a/docs/ref/contrib/postgres/forms.txt +++ b/docs/ref/contrib/postgres/forms.txt @@ -150,6 +150,7 @@ HStoreField submission to the server. .. note:: + On occasions it may be useful to require or restrict the keys which are valid for a given field. This can be done using the :class:`~django.contrib.postgres.validators.KeysValidator`. diff --git a/docs/topics/migrations.txt b/docs/topics/migrations.txt index 348249388a..238a600caf 100755 --- a/docs/topics/migrations.txt +++ b/docs/topics/migrations.txt @@ -604,6 +604,7 @@ of three things ``(path, args, kwargs)``: ``__init__`` method. Every value should itself be serializable. .. note:: + This return value is different from the ``deconstruct()`` method :ref:`for custom fields ` which returns a tuple of four items.