From a7f8018df965daa1dbbe4392024bd04a5f74f9c9 Mon Sep 17 00:00:00 2001 From: Leo Horie Date: Tue, 15 Nov 2016 10:40:42 -0500 Subject: [PATCH] fix typo --- docs/request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/request.md b/docs/request.md index 40f42c49..61d416a9 100644 --- a/docs/request.md +++ b/docs/request.md @@ -142,7 +142,7 @@ m.route(document.body, "/", { }) ``` -There are a few difference between this example and the one before. Here, `Data.todos.list` is `null` at the beginning. Also, there's an extra field `error` for holding an error message, and the view of the `Todos` component was modified to displays an error message if one exists, or display a loading icon if `Data.todos.list` is not an array. +There are a few differences between this example and the one before. Here, `Data.todos.list` is `null` at the beginning. Also, there's an extra field `error` for holding an error message, and the view of the `Todos` component was modified to displays an error message if one exists, or display a loading icon if `Data.todos.list` is not an array. ---