From 250d7a6f3d0005c3f921d13e610298e6f38e6065 Mon Sep 17 00:00:00 2001 From: "Shawn T. Amundson" Date: Mon, 16 Oct 2017 11:10:27 -0500 Subject: [PATCH] Fix typo in responses guide: 'An' -> 'As'. --- site/guide/responses.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/guide/responses.md b/site/guide/responses.md index 7350d1a7..0ef0a082 100644 --- a/site/guide/responses.md +++ b/site/guide/responses.md @@ -214,7 +214,7 @@ well-formed JSON data: simply return a value of type `Json` 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