From: Tobias Klauser
Date: Tue, 12 Sep 2017 12:20:17 +0000 (+0200)
Subject: doc: unify colons and spacing in diagnostics guide
X-Git-Tag: go1.10beta1~1126
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1a706bbf055d78238ec33c381a12b71800dae92f;p=gostls13.git
doc: unify colons and spacing in diagnostics guide
Unify colons (outside of ) and add a missing space in
the list of groups of diagnostics solutions.
Change-Id: Icbcd94427d4905dd88c4ea82aaa5dbf064c00990
Reviewed-on: https://go-review.googlesource.com/63111
Reviewed-by: JBD
---
diff --git a/doc/diagnostics.html b/doc/diagnostics.html
index aaaf9d33e7..36464760ed 100644
--- a/doc/diagnostics.html
+++ b/doc/diagnostics.html
@@ -17,10 +17,10 @@ Diagnostics solutions can be categorized into the following groups:
-- Profiling Profiling tools analyze the complexity and costs of a
+
- Profiling: Profiling tools analyze the complexity and costs of a
Go program such as its memory usage and frequently called
functions to identify the expensive sections of a Go program.
-- Tracing:Tracing is a way to instrument code to analyze latency
+
- Tracing: Tracing is a way to instrument code to analyze latency
throughout the lifecycle of a call or user request. Traces provide an
overview of how much latency each component contributes to the overall
latency in a system. Traces can span multiple Go processes.