Opened 16 years ago
Closed 16 years ago
#9898 closed (fixed)
Typo on http://docs.djangoproject.com/en/dev/topics/forms/modelforms/
Reported by: | gizzywump | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.0 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Typo on http://docs.djangoproject.com/en/dev/topics/forms/modelforms/
This save() method accepts an optional commit keyword argument, which accepts either True or False. If you call save() with commit=False, then it will return an object that hasn't yet been saved to the database. In this case, it's up to you to call save() on the resulting model instance. This is useful if you want to do custom processing on the object before saving it, or if you want to use one of the specialised model saving options. commit is True by default.
(Used to say "on").
(In [9662]) Fixed #9898 -- Added a missing 'e' to 'one'. Thanks gizzywump. Also Americanized specialised while in the area, per contributing's guideline.