From 755bf5a191a0c1fd427c0794121dac58475f080e Mon Sep 17 00:00:00 2001 From: kennylong Date: Sat, 25 Jun 2022 06:38:14 +0800 Subject: [PATCH] fix typo in the binary log (#5467) Signed-off-by: kennylong --- internal/binarylog/binarylog.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/binarylog/binarylog.go b/internal/binarylog/binarylog.go index 0a25ce43f3f..e3dfe204f9a 100644 --- a/internal/binarylog/binarylog.go +++ b/internal/binarylog/binarylog.go @@ -42,14 +42,14 @@ var binLogger Logger var grpclogLogger = grpclog.Component("binarylog") -// SetLogger sets the binarg logger. +// SetLogger sets the binary logger. // // Only call this at init time. func SetLogger(l Logger) { binLogger = l } -// GetLogger gets the binarg logger. +// GetLogger gets the binary logger. // // Only call this at init time. func GetLogger() Logger {