Skip to content

Commit 1fc44a4

Browse files
aleemedmunds
authored andcommitted
Docs: fix typos and other minor text edits
- remove extraneous parens - a few minor suggested text edits for readability
1 parent acca6a4 commit 1fc44a4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/sending/tracking.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Webhook support is optional. If you haven't yet, you'll need to
1313
:ref:`configure webhooks <webhooks-configuration>` in your Django
1414
project. (You may also want to review :ref:`securing-webhooks`.)
1515

16-
Once you've enabled webhooks, Anymail will send a ``anymail.signals.tracking``
16+
Once you've enabled webhooks, Anymail will send an ``anymail.signals.tracking``
1717
custom Django :mod:`signal <django.dispatch>` for each ESP tracking event it receives.
1818
You can connect your own receiver function to this signal for further processing.
1919

@@ -45,7 +45,7 @@ in multiple receivers, if that makes your code cleaner. These
4545
:ref:`signal receiver functions <signal-receivers>` are documented
4646
in more detail below.
4747

48-
Note that your tracking signal recevier(s) will be called for all tracking
48+
Note that your tracking signal receiver(s) will be called for all tracking
4949
webhook types you've enabled at your ESP, so you should always check the
5050
:attr:`~AnymailTrackingEvent.event_type` as shown in the examples above
5151
to ensure you're processing the expected events.
@@ -173,7 +173,7 @@ Normalized tracking event
173173

174174
Not all ESPs provide all reject reasons, and this area is often
175175
under-documented by the ESP. Anymail does its best to interpret
176-
the ESP event, but you may find (e.g.,) that it will report
176+
the ESP event, but you may find that it will report
177177
`'timed_out'` for one ESP, and `'bounced'` for another, sending
178178
to the same non-existent mailbox.
179179

@@ -241,7 +241,7 @@ Your Anymail signal receiver must be a function with this signature:
241241
in a 400 HTTP error to the webhook. See discussion
242242
below.
243243

244-
If (any of) your signal receivers raise an exception, Anymail
244+
If any of your signal receivers raise an exception, Anymail
245245
will discontinue processing the current batch of events and return
246246
an HTTP 400 error to the ESP. Most ESPs respond to this by re-sending
247247
the event(s) later, a limited number of times.

0 commit comments

Comments
 (0)