From 0970aea7e74908dcd78f841e945fc809679709b8 Mon Sep 17 00:00:00 2001 From: godchen Date: Mon, 1 Nov 2021 16:52:19 +0800 Subject: [PATCH] [skip ci]Fix allocator typo (#10997) Signed-off-by: godchen --- internal/datacoord/allocator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/datacoord/allocator.go b/internal/datacoord/allocator.go index 1a52cd5e8c..1dddbd5d5d 100644 --- a/internal/datacoord/allocator.go +++ b/internal/datacoord/allocator.go @@ -38,7 +38,7 @@ type rootCoordAllocator struct { types.RootCoord } -// newRootCoordAllocator get an allocator from RootCoord +// newRootCoordAllocator gets an allocator from RootCoord func newRootCoordAllocator(rootCoordClient types.RootCoord) allocator { return &rootCoordAllocator{ RootCoord: rootCoordClient,