Opened 17 years ago
Closed 17 years ago
#9046 closed (fixed)
Typo in the intermediate model documentation
| Reported by: | Djoume Salvetti | 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
I believe there is a typo in the documentation on intermediate model for many to many relations,
line 481 of docs/topics/db/models.txt
Groups.objects.filter(personnamestartswith='Paul')
should be:
Group.objects.filter(membersnamestartswith='Paul')
Note:
See TracTickets
for help on using tickets.
(In [9020]) Fixed #9046: Corrected a typo in the m2m intermediate docs. Thanks to djoume for the report.