Fixed typo in docs/ref/forms/widgets.txt.

Thanks rgs258 for the report.
This commit is contained in:
Mariusz Felisiak 2020-12-15 21:12:26 +01:00 committed by GitHub
parent 0ed6f3ba4b
commit 0ecc70b15a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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