From fad20d83d35be35a414313eb4aa3f2ba1c33679a Mon Sep 17 00:00:00 2001 From: Steve Carlson Date: Tue, 10 Aug 2021 14:43:41 -0500 Subject: [PATCH] docs: sampler typo (#342) fix BasicSampler docstring typo Co-authored-by: Steve Carlson --- 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