From f78a91e94fc644e8c7233667e6b089f02ce793d2 Mon Sep 17 00:00:00 2001 From: Nathan Villaescusa Date: Mon, 18 Mar 2024 15:29:19 -0700 Subject: [PATCH] Spelling --- lib/rdbms/scan/scan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rdbms/scan/scan.go b/lib/rdbms/scan/scan.go index 8b4f22ca..947af1a1 100644 --- a/lib/rdbms/scan/scan.go +++ b/lib/rdbms/scan/scan.go @@ -107,7 +107,7 @@ func (s *Scanner) Next() ([]map[string]any, error) { if !wasFirstBatch && !startingValuesChanged { // Detect situations where the scanner is stuck in a loop. - // Typically the second batch will use a > comparision instead of a >= comparision for the lower bound. + // Typically the second batch will use a > comparison instead of a >= comparison for the lower bound. return nil, fmt.Errorf("primarky key start values did not change, scanner is likely stuck in a loop") } }