Fix docs: fairings.md "these event" -> "these events"

Small grammar error
This commit is contained in:
Cole R Lawrence 2017-09-27 20:17:40 -07:00 committed by GitHub
parent 92ce006e2c
commit 244c7ced88
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ about incoming requests and outgoing responses.
Any type that implements the [`Fairing`] trait is a _fairing_. Fairings hook
into Rocket's request lifecycle, receiving callbacks for events such as incoming
requests and outgoing responses. Rocket passes information about these event to
requests and outgoing responses. Rocket passes information about these events to
the fairing, and the fairing can do what it wants with the information. This
includes rewriting data when applicable, recording information about the event
or data, or doing nothing at all.