aboutsummaryrefslogtreecommitdiff
path: root/ref/store/transactional_store.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-31 02:40:34 +0000
committerGravatar Runxi Yu2026-03-31 02:40:34 +0000
commitda6764565629b0376f8d505bdd9d5fdc9c567f93 (patch)
tree6b855e5e4ba9c740f76016f42c1bb5ebd9fb9447 /ref/store/transactional_store.go
parentobject/fetch: Remove peel to tag functions (diff)
signatureNo signature
ref/store: Simplify names v0.1.166
Diffstat (limited to 'ref/store/transactional_store.go')
-rw-r--r--ref/store/transactional_store.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/ref/store/transactional_store.go b/ref/store/transactional_store.go
index 8a061f54..10f4543a 100644
--- a/ref/store/transactional_store.go
+++ b/ref/store/transactional_store.go
@@ -1,11 +1,11 @@
package refstore
-// TransactionalStore begins atomic reference transactions.
+// Transactioner begins atomic reference transactions.
//
// Not every readable reference store is writable. Implementations should only
-// satisfy TransactionalStore when they can stage and commit reference updates
+// satisfy Transactioner when they can stage and commit reference updates
// atomically within that backend.
-type TransactionalStore interface {
+type Transactioner interface {
// BeginTransaction creates one new mutable transaction.
//
// Labels: Life-Parent.