From 6845b0e986859ac6a389b584ca6dc18f858a2a6a Mon Sep 17 00:00:00 2001 From: godchen Date: Wed, 8 Dec 2021 20:49:14 +0800 Subject: [PATCH] [skip ci]Fix comment typo (#13016) Signed-off-by: godchen --- internal/storage/binlog_iterator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/storage/binlog_iterator.go b/internal/storage/binlog_iterator.go index 7ce87b2900..061caaf284 100644 --- a/internal/storage/binlog_iterator.go +++ b/internal/storage/binlog_iterator.go @@ -21,7 +21,7 @@ import ( var ( // ErrNoMoreRecord is the error that the iterator does not have next record. ErrNoMoreRecord = errors.New("no more record") - // ErrDisposed is the error that the iterator is disposed + // ErrDisposed is the error that the iterator is disposed. ErrDisposed = errors.New("iterator is disposed") )