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: