Opened 14 years ago

Closed 14 years ago

#12983 closed (fixed)

Spelling error in trunk signal documentation

Reported by: kcharvey Owned by: nobody
Component: Documentation Version: 1.1
Severity: Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

http://docs.djangoproject.com/en/dev/topics/signals/

I before E except after C

Connecting to signals sent by specific senders¶

Some signals get sent many times, but you'll only be interested in recieving a certain subset of those signals. For example, consider the django.db.models.signals.pre_save signal sent before a model gets saved. Most of the time, you don't need to know when any model gets saved -- just when one specific model is saved.

Attachments (1)

12983.diff (685 bytes ) - added by Tim Graham 14 years ago.

Download all attachments as: .zip

Change History (3)

by Tim Graham, 14 years ago

Attachment: 12983.diff added

comment:1 by Tim Graham, 14 years ago

Has patch: set
Triage Stage: UnreviewedReady for checkin

comment:2 by Russell Keith-Magee, 14 years ago

Resolution: fixed
Status: newclosed

Fixed in r12924

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