aboutsummaryrefslogtreecommitdiff
path: root/object/object.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/object.go')
-rw-r--r--object/object.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/object/object.go b/object/object.go
index 70d418df..f2325211 100644
--- a/object/object.go
+++ b/object/object.go
@@ -1,10 +1,9 @@
-// Package object parses and serializes objects such as blob, tree, commit, and
-// tag.
+// Package object provides shared object interfaces.
package object
import objecttype "codeberg.org/lindenii/furgit/object/type"
-// Object is a Git object that can serialize itself.
+// Object is a Git object.
type Object interface {
ObjectType() objecttype.Type
SerializeWithoutHeader() ([]byte, error)