aboutsummaryrefslogtreecommitdiff
path: root/content/http-tracing.article
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2020-03-09 23:19:59 -0400
committerRuss Cox <rsc@golang.org>2020-03-11 14:10:15 +0000
commit9dd3d9b97af3dba2bd18f1a5e18bd8e8edf78962 (patch)
tree700ba48e63519a9b9bfcfef1aa783ca7e1f821a3 /content/http-tracing.article
parent482079d678d84e207dd9ae63266c4bd4e653886b (diff)
content: use tabs consistently for code blocks + indentation
A few articles used four spaces instead. The present format will convert to four spaces for indentation on its own; use tabs. The present format does not care what indentation is used, but use tabs everywhere for consistency. For golang/go#33955. Change-Id: I2bab8aa72fa2f68d48fb833b7317f87d7624a05f Reviewed-on: https://go-review.googlesource.com/c/blog/+/222840 Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'content/http-tracing.article')
-rw-r--r--content/http-tracing.article4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/http-tracing.article b/content/http-tracing.article
index ae14d57..710ae60 100644
--- a/content/http-tracing.article
+++ b/content/http-tracing.article
@@ -57,8 +57,8 @@ The program below identifies the current request by using an
The program will follow the redirect of google.com to www.google.com and will output:
- Connection reused for https://google.com? false
- Connection reused for https://www.google.com/? false
+ Connection reused for https://google.com? false
+ Connection reused for https://www.google.com/? false
The Transport in the `net/http` package supports tracing of both HTTP/1
and HTTP/2 requests.