From 73a1413dc870113725e1bc6d2a06f74b8b734ed2 Mon Sep 17 00:00:00 2001 From: Ryan Balfanz <133278+RyanBalfanz@users.noreply.github.com> Date: Thu, 21 Oct 2021 22:05:08 -0700 Subject: [PATCH] fix documentation typo --- batch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batch.go b/batch.go index 14d70fc..74b5c4f 100644 --- a/batch.go +++ b/batch.go @@ -7,7 +7,7 @@ import "errors" // indicates it was deliberate, and not an error case. type BatchFunc func(start, end int) error -// Abort is a sentinal error as defined by Dave Cheney (@davecheney) which +// Abort is a sentinel error as defined by Dave Cheney (@davecheney) which // indicates a batch operation should abort early. var Abort = errors.New("done")