Fix typo in requests guide: 'A' -> 'a'.

This commit is contained in:
Cezar Halmagean 2020-09-24 17:04:00 +00:00 committed by Jeb Rosen
parent 2040693dab
commit 2d1d7e8c89
1 changed files with 1 additions and 1 deletions

View File

@ -782,7 +782,7 @@ fn new(task: Option<Form<Task>>) { /* .. */ }
#### Lenient Parsing
Rocket's `FromForm` parsing is _strict_ by default. In other words, A `Form<T>`
Rocket's `FromForm` parsing is _strict_ by default. In other words, a `Form<T>`
will parse successfully from an incoming form only if the form contains the
exact set of fields in `T`. Said another way, a `Form<T>` will error on missing
and/or extra fields. For instance, if an incoming form contains the fields "a",