aboutsummaryrefslogtreecommitdiff
path: root/object/signature/parse.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-04-02 09:06:11 +0000
committerGravatar Runxi Yu2026-04-02 09:06:58 +0000
commitaa98c69cdd1d5e1fd1f83b0f5f6e468f2cf44138 (patch)
tree65f1077e8c4a99b1a9da4a5798a38eff76951390 /object/signature/parse.go
parentobject/signature: Add (diff)
signatureNo signature
furgit: I forgot to add lifetime labels
Diffstat (limited to 'object/signature/parse.go')
-rw-r--r--object/signature/parse.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/object/signature/parse.go b/object/signature/parse.go
index 1de72ab5..e633f017 100644
--- a/object/signature/parse.go
+++ b/object/signature/parse.go
@@ -9,6 +9,8 @@ import (
)
// Parse parses a canonical Git signature line.
+//
+// Labels: Life-Independent.
func Parse(line []byte) (*Signature, error) {
lt := bytes.IndexByte(line, '<')
if lt < 0 {