From f15ae160c4acfe3872455f87e6133af87859172b Mon Sep 17 00:00:00 2001 From: Umut Tezduyar Lindskog Date: Fri, 18 Aug 2023 16:24:32 +0200 Subject: [PATCH] Fix the broken sentence (#4456) Co-authored-by: Tyler Yahn --- sdk/metric/reader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/metric/reader.go b/sdk/metric/reader.go index 639dfc9653a..6ad9680413b 100644 --- a/sdk/metric/reader.go +++ b/sdk/metric/reader.go @@ -40,7 +40,7 @@ var errNonPositiveDuration = fmt.Errorf("non-positive duration") // Reader is the interface used between the SDK and an // exporter. Control flow is bi-directional through the // Reader, since the SDK initiates ForceFlush and Shutdown -// while the initiates collection. The Register() method here +// while the exporter initiates collection. The Register() method here // informs the Reader that it can begin reading, signaling the // start of bi-directional control flow. //