From 7aa7af5fd0410a778e14e0a50d062ce4f7cb9e73 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Thu, 5 Aug 2021 13:03:40 -0700 Subject: [PATCH] Fix typo (#592) Signed-off-by: Jeff Widman --- span_allocator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/span_allocator.go b/span_allocator.go index 6fe0cd0c..fba1e433 100644 --- a/span_allocator.go +++ b/span_allocator.go @@ -16,7 +16,7 @@ package jaeger import "sync" -// SpanAllocator abstraction of managign span allocations +// SpanAllocator abstraction of managing span allocations type SpanAllocator interface { Get() *Span Put(*Span)