Opened 19 years ago

Closed 19 years ago

Last modified 17 years ago

#296 closed enhancement (fixed)

[patch] Typo in docs/model_api.txt

Reported by: rmunn@… Owned by: Jacob
Component: Documentation Version:
Severity: normal Keywords:
Cc: Triage Stage: Design decision needed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

The word "deliver" is misspelled in one of the examples. Here's a patch to fix it:

Index: docs/model-api.txt
===================================================================
--- docs/model-api.txt  (revision 454)
+++ docs/model-api.txt  (working copy)
@@ -87,7 +87,7 @@
     object. A add, delete, and change permission is automatically created for
     each object. This option specifies extra permissions::
 
-        permissions = (("can_delivier_pizzas", "Can deliver pizzas"),)
+        permissions = (("can_deliver_pizzas", "Can deliver pizzas"),)
 
     This is a list of 2-tuples of
     ``(permission_code, human_readable_permission_name)``.

Change History (1)

comment:1 by Adrian Holovaty, 19 years ago

Resolution: fixed
Status: newclosed

(In [456]) Fixed #296 -- Fixed typo in docs/model-api.txt. Thanks, rmunn

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