From bf1ea57d24f80998233b0a50b32263d09ba53920 Mon Sep 17 00:00:00 2001 From: Steve Carlson Date: Tue, 10 Aug 2021 13:03:13 -0500 Subject: [PATCH] docs: sampler typo fix BasicSampler docstring typo --- sampler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sampler.go b/sampler.go index a99629eb..1be98c4f 100644 --- a/sampler.go +++ b/sampler.go @@ -38,7 +38,7 @@ func (s RandomSampler) Sample(lvl Level) bool { } // BasicSampler is a sampler that will send every Nth events, regardless of -// there level. +// their level. type BasicSampler struct { N uint32 counter uint32