From cd8fc18973a28baab9093e9ee7c4eba68c225840 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20F=C3=BCrst?= Date: Mon, 18 Sep 2017 19:01:40 +0200 Subject: [PATCH] typo --- section01/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/section01/README.md b/section01/README.md index 75f7828..f5aebe0 100644 --- a/section01/README.md +++ b/section01/README.md @@ -80,7 +80,7 @@ and the equivalent helper functions: What if you want to use some other methods? Meet the [`Do`](https://golang.org/pkg/net/http#Client.Do) method. This method receives a pointer to `http.Request` as parameters and return a `http.Response` and an `error`. -The `Request` method provides all the expressivity we need to send any kind of HTTP requests. +The `Request` method provides all the expressiveness we need to send any kind of HTTP requests. For instance, we can create the equivalent request to the original `get.go` program: