Fix typo in responses guide: 'An' -> 'As'.

This commit is contained in:
Shawn T. Amundson 2017-10-16 11:10:27 -05:00 committed by Sergio Benitez
parent b85cde4a33
commit 250d7a6f3d
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ well-formed JSON data: simply return a value of type `Json<T>` where `T` is the
type of a structure to serialize into JSON. The type `T` must implement the
[`Serialize`] trait from [`serde`], which can be automatically derived.
An an example, to respond with the JSON value of a `Task` structure, we might
As an example, to respond with the JSON value of a `Task` structure, we might
write:
```rust