summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-10-13 11:02:18 +0200
committerClaude Paroz <claude@2xlibre.net>2012-10-13 11:05:22 +0200
commit4cdc416d039c7cfc04aa7bc156dd5a1c737375ed (patch)
treefd8d4fcf36794105ba5061886bc0bcab4bbebd7b /docs/ref
parentd2891d1c0751d53c10f19672ac7d232b6e5088b0 (diff)
[1.4.x] Fixed #19119 -- Corrected default date input formats in docs
Thanks henrik@aisti.fi for the report. Backport of 10dc4797ea from master.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/forms/fields.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/forms/fields.txt b/docs/ref/forms/fields.txt
index 7ebd495924..6047bcab9b 100644
--- a/docs/ref/forms/fields.txt
+++ b/docs/ref/forms/fields.txt
@@ -411,7 +411,7 @@ For each field, we describe the default widget used if you don't specify
Additionally, if you specify :setting:`USE_L10N=False<USE_L10N>` in your settings, the
following will also be included in the default input formats::
- '%b %m %d', # 'Oct 25 2006'
+ '%b %d %Y', # 'Oct 25 2006'
'%b %d, %Y', # 'Oct 25, 2006'
'%d %b %Y', # '25 Oct 2006'
'%d %b, %Y', # '25 Oct, 2006'