summaryrefslogtreecommitdiff
path: root/docs
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:02:18 +0200
commit10dc4797eadc1868c794c746953036c87ed0ea73 (patch)
treee15a84cbdd92fbf13e610fc18174366147fb828d /docs
parentb3b3db3d954a5226f870a0b4403343c78efae8dc (diff)
Fixed #19119 -- Corrected default date input formats in docs
Thanks henrik@aisti.fi for the report.
Diffstat (limited to 'docs')
-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 27ca002312..1b209ace22 100644
--- a/docs/ref/forms/fields.txt
+++ b/docs/ref/forms/fields.txt
@@ -405,7 +405,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'