Skip to content

Commit

Permalink
Correct some more misspellings of announcement(s).
Browse files Browse the repository at this point in the history
Signed-off-by: Brian Rosner <brosner@gmail.com>
  • Loading branch information
richardbarran authored and brosner committed Jun 10, 2009
1 parent 03be259 commit 5ba3f31
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions announcements/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

class AnnouncementAdminForm(forms.ModelForm):
"""
A custom form for the admin of the Announcment model. Has an extra field
called send_now that when checked will send out the announcment allowing
A custom form for the admin of the Announcement model. Has an extra field
called send_now that when checked will send out the announcement allowing
the user to decide when that happens.
"""
send_now = forms.BooleanField(required=False,
Expand Down
2 changes: 1 addition & 1 deletion announcements/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def current(self, exclude=[], site_wide=False, for_members=False):

class Announcement(models.Model):
"""
A single announcment.
A single announcement.
"""
title = models.CharField(_("title"), max_length=50)
content = models.TextField(_("content"))
Expand Down
6 changes: 3 additions & 3 deletions docs/usage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ To store announcements in the database, announcements comes with a model that
deals with this. It contains these fields:

* ``title`` - The title of the announcement. This is limited to 50 characters.
The title is completely optional since some types of annoucements don't
The title is completely optional since some types of announcements don't
really need one.
* ``content`` - The main content of the announcement.
* ``creator`` - The user who created the announcement.
* ``creation_date`` - A ``DateTimeField`` indicating when the announcement
was created.
* ``site_wide`` - A boolean value indicating whether the announcment should
* ``site_wide`` - A boolean value indicating whether the announcement should
be site-wide and used in the context processor.
* ``members_only`` - This will tag an announcemnt as for member eyes only.
* ``members_only`` - This will tag an announcement as for member eyes only.

Additional uses
===============
Expand Down

0 comments on commit 5ba3f31

Please sign in to comment.