From b3be5352c538a719ea1b35b611ca327e1faf789b Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 8 Nov 2017 00:56:14 +0000 Subject: [PATCH] spelling: rotates --- go/mysql/binlog.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/mysql/binlog.go b/go/mysql/binlog.go index fad0a64..50279ce 100644 --- a/go/mysql/binlog.go +++ b/go/mysql/binlog.go @@ -96,7 +96,7 @@ func (this *BinlogCoordinates) FileSmallerThan(other *BinlogCoordinates) bool { } // FileNumberDistance returns the numeric distance between this coordinate's file number and the other's. -// Effectively it means "how many roatets/FLUSHes would make these coordinates's file reach the other's" +// Effectively it means "how many rotates/FLUSHes would make these coordinates's file reach the other's" func (this *BinlogCoordinates) FileNumberDistance(other *BinlogCoordinates) int { thisNumber, _ := this.FileNumber() otherNumber, _ := other.FileNumber()