From 990321423786a16c4f20003b02394786f5199945 Mon Sep 17 00:00:00 2001 From: beorn7 Date: Mon, 27 Jan 2020 15:46:39 +0100 Subject: [PATCH] Fix typo in doc comment Signed-off-by: beorn7 --- examples/random/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/random/main.go b/examples/random/main.go index f0789b9..20a9db5 100644 --- a/examples/random/main.go +++ b/examples/random/main.go @@ -95,7 +95,7 @@ func main() { // application. Note the necessary type assertion. We // already know that rpcDurationsHistogram implements // the ExemplarObserver interface and thus don't need to - // check the outcome of the tipe assertion. + // check the outcome of the type assertion. rpcDurationsHistogram.(prometheus.ExemplarObserver).ObserveWithExemplar( v, prometheus.Labels{"dummyID": fmt.Sprint(rand.Intn(100000))}, )