[3.1.x] Fixed typo in docs/ref/forms/widgets.txt.

Thanks rgs258 for the report.
Backport of 0ecc70b15a from master
This commit is contained in:
Mariusz Felisiak 2020-12-15 21:12:26 +01:00
parent 3d28beea00
commit 1fb99795e7
1 changed files with 1 additions and 1 deletions

View File

@ -369,7 +369,7 @@ foundation for custom widgets.
for one widget. For example::
>>> widget = MultiWidget(widgets={'': TextInput, 'last': TextInput})
>>> widget.render('name', ['john', 'lennon'])
>>> widget.render('name', ['john', 'paul'])
'<input type="text" name="name" value="john"><input type="text" name="name_last" value="paul">'
.. versionchanged::3.1