From 9363dbf7b25fe40e343832fcff2971f99eaec773 Mon Sep 17 00:00:00 2001 From: godchen Date: Wed, 8 Dec 2021 20:47:24 +0800 Subject: [PATCH] [skip ci]Fix comment typo (#13015) 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 eb05f1a6d2..7ce87b2900 100644 --- a/internal/storage/binlog_iterator.go +++ b/internal/storage/binlog_iterator.go @@ -19,7 +19,7 @@ import ( ) var ( - // ErrNoMoreRecord is the error that the iterator does not have next record + // 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 = errors.New("iterator is disposed")