aboutsummaryrefslogtreecommitdiff
path: root/object/blob/parse.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-05-24 08:16:38 +0000
committerGravatar Runxi Yu2026-05-24 08:16:38 +0000
commitf84f3a3c79b09ad13fdc826933c4c1d8353cdefb (patch)
tree08bbd2a21b2125382fd7b1b5defbaffc2369b34c /object/blob/parse.go
parentobject: Fix error handling (diff)
signatureNo signature
object{,/blob,/commit}: Fix lints
Diffstat (limited to 'object/blob/parse.go')
-rw-r--r--object/blob/parse.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/object/blob/parse.go b/object/blob/parse.go
index b98b0f14..b5522e6a 100644
--- a/object/blob/parse.go
+++ b/object/blob/parse.go
@@ -2,7 +2,7 @@ package blob
// Parse decodes a blob object body.
//
-// Labels: Deps-Owned, Life-Independent
+// Labels: Deps-Owned, Life-Independent.
func Parse(body []byte) (*Blob, error) {
return &Blob{Data: append([]byte(nil), body...)}, nil
}