Opened 7 years ago

Closed 7 years ago

Last modified 7 years ago

#27494 closed Cleanup/optimization (fixed)

markup typo in model docs

Reported by: Stephan Groß Owned by: nobody
Component: Documentation Version: 1.10
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

there are 2 markup typos in the models documentation.

Line 1025
`'%(class)s'`` should be: ``'%(class)s'``

Line 1026
``'%(app_label)s`` should be: ``'%(app_label)s'``

related file:
https://github.com/django/django/blob/master/docs/topics/db/models.txt

live:
https://docs.djangoproject.com/en/1.10/topics/db/models/

Change History (3)

comment:1 by Tim Graham <timograham@…>, 7 years ago

Resolution: fixed
Status: newclosed

In 3ce212a:

Fixed #27494 -- Fixed typos in docs/topics/db/models.txt.

comment:2 by Tim Graham <timograham@…>, 7 years ago

In fe8b556:

[1.10.x] Fixed #27494 -- Fixed typos in docs/topics/db/models.txt.

Backport of 3ce212a23c55c0e2fb99a632afdf04d03cf41e74 from master

comment:3 by Tim Graham, 7 years ago

Thanks. For future reference, if it's easier for you to create a pull request than to file a ticket, that's fine for typo fixes.

Note: See TracTickets for help on using tickets.
Back to Top