diff options
author | Santiago M. Mola <santi@mola.io> | 2017-02-06 18:11:10 +0100 |
---|---|---|
committer | Santiago M. Mola <santi@mola.io> | 2017-02-06 18:11:59 +0100 |
commit | 2b1efd219e1f20d9a0bc380a26074c9d8de2ae1f (patch) | |
tree | 9c75fd75bd905c2bcf736b0d87e5dde81ad230a4 /plumbing/object/object.go | |
parent | 70eff0d7bd1f69856f8028c2487576085a54a42c (diff) | |
download | go-git-2b1efd219e1f20d9a0bc380a26074c9d8de2ae1f.tar.gz |
doc: improve docs for object package.
* add package description.
* add godoc to DecodeBlob.
* clarify godoc for Object and Blob.
Diffstat (limited to 'plumbing/object/object.go')
-rw-r--r-- | plumbing/object/object.go | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/plumbing/object/object.go b/plumbing/object/object.go index 51d9bc4..5512932 100644 --- a/plumbing/object/object.go +++ b/plumbing/object/object.go @@ -1,3 +1,5 @@ +// Package object contains implementations of all Git objects and utility +// functions to work with them. package object import ( @@ -35,8 +37,9 @@ var ErrUnsupportedObject = errors.New("unsupported object type") // } // } // -// This interface is intentionally different from plumbing.EncodedObject, which is a lower -// level interface used by storage implementations to read and write objects. +// This interface is intentionally different from plumbing.EncodedObject, which +// is a lower level interface used by storage implementations to read and write +// objects in its encoded form. type Object interface { ID() plumbing.Hash Type() plumbing.ObjectType |