Opened 18 years ago

Closed 18 years ago

Last modified 18 years ago

#876 closed enhancement (fixed)

Typo in trunk/docs/forms.txt

Reported by: czhang Owned by: Jacob
Component: Documentation Version: dev
Severity: trivial 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

The diff is:
$ diff forms.txt forms.txt.new
103c103
< * You'll have to separate create a form (and view) that submits to this
---

  • You'll have to separately create a form (and view) that submits to this

308c308
< # Grab the Place object is question for future use.
---

# Grab the Place object in question for future use.

BTW: would someone please to tell me what's the preferred option for diff to generate a diff file for Django? Thanks.

Change History (3)

comment:1 by czhang <czhang.cmu@…>, 18 years ago

ouch, forgot to use WikiFormatting. The diff should be:

$ diff forms.txt forms.txt.new 
103c103
<     * You'll have to separate create a form (and view) that submits to this
---
>     * You'll have to separately create a form (and view) that submits to this
308c308
<         # Grab the Place object is question for future use.
---
>         # Grab the Place object in question for future use.

comment:2 by Adrian Holovaty, 18 years ago

Resolution: fixed
Status: newclosed

(In [1353]) Fixed #876 -- Fixed typos in docs/forms.txt. Thanks, czhang

comment:3 by Adrian Holovaty, 18 years ago

Thanks, czhang. The best way to submit diffs is by attaching a file to the ticket with a ".diff" extension. That way, Trac will apply pretty syntax highlighting.

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