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:
committed by
Mariusz Felisiak
parent
177fa08339
commit
03db5fddfd
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user