From d2c7f538ad94b7e58f16a96dfc30db7504ff84a5 Mon Sep 17 00:00:00 2001 From: harjaus Date: Sat, 21 Sep 2019 12:07:35 +0100 Subject: [PATCH] Minor spelling mistake --- 02 HTTP.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02 HTTP.md b/02 HTTP.md index 80943f2b..68744dc5 100644 --- a/02 HTTP.md +++ b/02 HTTP.md @@ -85,7 +85,7 @@ Start the server and access the `/books/1` route. What is displayed in the web b 2. Note that it is itself a JavaScript object and that it contains a single property called `index` which matches the name of the URL segment. 3. The value of this property is the string we added to the URL. 4. This index value is used to look up the title of the book in the array, the book title is stored in a constant. -5. Finally the book title is send to the web browser. +5. Finally the book title is sent to the web browser. #### 1.3.1 Core Knowledge