From f0ab51296e679cc868c1aec21c753148a55a5255 Mon Sep 17 00:00:00 2001 From: Fred Carle Date: Fri, 14 Jun 2024 16:31:54 -0400 Subject: [PATCH] fix typo Co-authored-by: Shahzad Lone --- datastore/memory/txn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datastore/memory/txn.go b/datastore/memory/txn.go index e27bffd635..f1086332b6 100644 --- a/datastore/memory/txn.go +++ b/datastore/memory/txn.go @@ -277,7 +277,7 @@ func (t *basicTxn) checkForConflicts(ctx context.Context) error { for iter.Next() { item := iter.Item() if !item.isGet { - // Conflict should only ocure if an item has been updated + // Conflict should only occur if an item has been updated // after we've read it within the transaction. continue }