From e8dc08f9e92306572cf92170b2918106089fc8a4 Mon Sep 17 00:00:00 2001 From: Shulhan Date: Wed, 30 Jan 2019 21:40:12 +0700 Subject: [PATCH] Fix typos --- CustomPprofProfiles.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CustomPprofProfiles.md b/CustomPprofProfiles.md index 8a410839..ef500db6 100644 --- a/CustomPprofProfiles.md +++ b/CustomPprofProfiles.md @@ -2,7 +2,7 @@ Originally published at https://rakyll.org/custom-profiles/. ---- -Go provides several pprof profiles out of thet box to gather +Go provides several pprof profiles out of the box to gather profiling data from Go programs. The builtin profiles provided by the [runtime/pprof](https://golang.org/pkg/runtime/pprof/) package: @@ -79,7 +79,7 @@ func main() { } defer b.Close() - // TODO: Perform some wrork, write to the blob. + // TODO: Perform some work, write to the blob. }() } http.ListenAndServe("localhost:8888", nil)