1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed typos in docs, comments, and exception messages.

This commit is contained in:
Ville Skyttä
2019-04-14 10:44:56 +03:00
committed by Mariusz Felisiak
parent 177fa08339
commit 03db5fddfd
13 changed files with 22 additions and 21 deletions

View File

@@ -189,7 +189,7 @@ class BaseForm:
return '%s-%s' % (self.prefix, field_name) if self.prefix else field_name
def add_initial_prefix(self, field_name):
"""Add a 'initial' prefix for checking dynamic initial values."""
"""Add an 'initial' prefix for checking dynamic initial values."""
return 'initial-%s' % self.add_prefix(field_name)
def _html_output(self, normal_row, error_row, row_ender, help_text_html, errors_on_separate_row):