From b55098c4862d776c5ba8348f3f2bced0ebf0cb9a Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 30 Jan 2024 15:59:05 -0500 Subject: [PATCH] Fix typo in datastore --- pkg/datastore/datastore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/datastore/datastore.go b/pkg/datastore/datastore.go index 3a98c05b66..86b206f0fc 100644 --- a/pkg/datastore/datastore.go +++ b/pkg/datastore/datastore.go @@ -381,7 +381,7 @@ type Datastore interface { // Any errors establishing the reader will be returned by subsequent calls. SnapshotReader(Revision) Reader - // ReadWriteTx tarts a read/write transaction, which will be committed if no error is + // ReadWriteTx starts a read/write transaction, which will be committed if no error is // returned and rolled back if an error is returned. ReadWriteTx(context.Context, TxUserFunc, ...options.RWTOptionsOption) (Revision, error)