Skip to content

Commit

Permalink
docs(typos): typos --format brief --write-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Sep 7, 2023
1 parent 22ab163 commit e983341
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ Maintenance
- Added support for Python 3.10 (#113), thank you @Andrew-Chen-Wang
- Dropped support for Django versions 2.1 and below
- Dropped support for Django 3.0
- Added suppport for Django 3.1
- Added suppport for Django 3.2
- Added support for Django 3.1
- Added support for Django 3.2
- Added support for Django 4.0 (#112), thank you @umarmughal824
- Improve documentation for Django 4.0 (#119), thank you @sergioisidoro
- Sync files with @jazzband/.github
Expand Down Expand Up @@ -120,7 +120,7 @@ Maintenance
- Fixed some backward compatibility issues.

- Updated existing translations (Danish, German, French,
Portugese (Brasil), Russian).
Portuguese (Brasil), Russian).

- Added Greek, Spanish (Spain), Japanese, Dutch, Slovak and Ukrainian
translations.
Expand All @@ -145,7 +145,7 @@ Maintenance
requires Django >= 1.3.

- Stop returning 404 pages if there are no Rules setup on the site. Instead
dissallow access for all robots.
disallow access for all robots.

- Added an initial South migration. If you're using South you have to "fake"
the initial database migration::
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ To overcome this, provide a name to the sitemap instance in ``urls.py``::
...
]

and inform django-robots about the view name by adding the followin setting::
and inform django-robots about the view name by adding the following setting::

ROBOTS_SITEMAP_VIEW_NAME = 'cached-sitemap'

Expand Down
2 changes: 1 addition & 1 deletion src/robots/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ def clean(self):
"allowed", False
):
raise forms.ValidationError(
_("Please specify at least one allowed or dissallowed URL.")
_("Please specify at least one allowed or disallowed URL.")
)
return self.cleaned_data

0 comments on commit e983341

Please sign in to comment.