aboutsummaryrefslogtreecommitdiff
path: root/ref
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-06-06 21:21:06 +0000
committerGravatar Runxi Yu2026-06-06 21:21:06 +0000
commit11d8ea1378bca6cb364f15363b7e9e130d7b1c3d (patch)
tree4d77d471dfbc68a1c4fa9f1af5e1cbfc47e84dd0 /ref
parentconfig: QoL renames (diff)
signatureNo signature
Label fixes
Diffstat (limited to 'ref')
-rw-r--r--ref/detached.go2
-rw-r--r--ref/symbolic.go2
2 files changed, 4 insertions, 0 deletions
diff --git a/ref/detached.go b/ref/detached.go
index 5fb1ed13..445c839e 100644
--- a/ref/detached.go
+++ b/ref/detached.go
@@ -3,6 +3,8 @@ package ref
import objectid "lindenii.org/go/furgit/object/id"
// Detached points directly to an object ID.
+//
+// Labels: MT-Unsafe.
type Detached struct {
RefName string
ID objectid.ObjectID
diff --git a/ref/symbolic.go b/ref/symbolic.go
index af9f9e84..4809e937 100644
--- a/ref/symbolic.go
+++ b/ref/symbolic.go
@@ -1,6 +1,8 @@
package ref
// Symbolic points to another reference name.
+//
+// Labels: MT-Unsafe.
type Symbolic struct {
RefName string
Target string