From d2d9a542087356c98dd23289a0ab391e4ca69332 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Fri, 31 May 2019 12:10:33 -0700 Subject: [PATCH] Use fewer words in HTTP Clients intro "out of the box" is implied by "standard library". --- examples/http-clients/http-clients.go | 6 +++--- examples/http-clients/http-clients.hash | 4 ++-- public/http-clients | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/http-clients/http-clients.go b/examples/http-clients/http-clients.go index 170f880..6ff5281 100644 --- a/examples/http-clients/http-clients.go +++ b/examples/http-clients/http-clients.go @@ -1,7 +1,7 @@ // The Go standard library comes with excellent support -// for HTTP clients and servers out of the box with the -// `net/http` package. In this example we'll use it to -// issue simple HTTP requests. +// for HTTP clients and servers in the `net/http` +// package. In this example we'll use it to issue simple +// HTTP requests. package main import ( diff --git a/examples/http-clients/http-clients.hash b/examples/http-clients/http-clients.hash index 7addbe9..0e85307 100644 --- a/examples/http-clients/http-clients.hash +++ b/examples/http-clients/http-clients.hash @@ -1,2 +1,2 @@ -afac2191f24a0861384d142ab58cc262fc47cfbf -Y92yCu1CIrI +cdcaa6f2e1e8596e882dd3eb460e633cfe3dd07c +nXc8J7KyUKd diff --git a/public/http-clients b/public/http-clients index c1dadf0..9bf3077 100644 --- a/public/http-clients +++ b/public/http-clients @@ -14,13 +14,13 @@

The Go standard library comes with excellent support -for HTTP clients and servers out of the box with the -net/http package. In this example we’ll use it to -issue simple HTTP requests.

+for HTTP clients and servers in the net/http +package. In this example we’ll use it to issue simple +HTTP requests.

- +
package main