From eac6b281768a29a6957262bc137f095960c846cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Geisend=C3=B6rfer?= Date: Thu, 25 Feb 2021 23:46:29 +0100 Subject: [PATCH] fix block profiler short description What was I thinking ... : | --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fcf90d8..546baae 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ I found that Go has a lot of profilers and there are many tools for looking at t - [pprof tool & format](./pprof.md): Describes the pprof tool and the binary data format for storing profiles. - [Goroutine Profiling](./goroutine.md): Allows you to get a list of all active goroutines and what they're currently doing. -- [Block Profiling](./block.md): Understand how much time your code spends waiting on networking, locks and channels. +- [Block Profiling](./block.md): Understand how much time your code spends waiting on channels and locks. - CPU Profiling (🚧 coming soon!) - Heap Profiling (🚧 coming soon!) - Mutex Profiling (🚧 coming soon!)