aboutsummaryrefslogtreecommitdiff
path: root/refstore/batch_store.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-07 19:30:18 +0800
committerGravatar Runxi Yu2026-03-07 19:30:18 +0800
commite083331679dd2d58cfd3a0b9639a6ecd6220ba31 (patch)
treeacc73269b74e8de5883f3682381604eab3a5a3ff /refstore/batch_store.go
parentrefstore: Add non-transactional store and rw store (diff)
signatureNo signature
refstore: Batch should also be staged
Diffstat (limited to 'refstore/batch_store.go')
-rw-r--r--refstore/batch_store.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/refstore/batch_store.go b/refstore/batch_store.go
index 8e821eb6..3ccfdd10 100644
--- a/refstore/batch_store.go
+++ b/refstore/batch_store.go
@@ -2,6 +2,6 @@ package refstore
// BatchStore begins non-atomic reference batches.
type BatchStore interface {
- // BeginBatch creates one new immediate-apply batch.
+ // BeginBatch creates one new queued batch.
BeginBatch() (Batch, error)
}