1
0
mirror of https://github.com/django/django.git synced 2024-12-23 01:25:58 +00:00

fix typo: instanciating -> instantiating

This commit is contained in:
Tom Terrace 2012-04-28 14:18:16 -03:00
parent 10cade8fac
commit a0d34348dd

View File

@ -35,7 +35,7 @@ class FormMixin(ContextMixin):
def get_form_kwargs(self):
"""
Returns the keyword arguments for instanciating the form.
Returns the keyword arguments for instantiating the form.
"""
kwargs = {'initial': self.get_initial()}
if self.request.method in ('POST', 'PUT'):
@ -87,7 +87,7 @@ class ModelFormMixin(FormMixin, SingleObjectMixin):
def get_form_kwargs(self):
"""
Returns the keyword arguments for instanciating the form.
Returns the keyword arguments for instantiating the form.
"""
kwargs = super(ModelFormMixin, self).get_form_kwargs()
kwargs.update({'instance': self.object})