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. ---