aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-29 09:42:32 +0000
committerGravatar Runxi Yu2026-03-29 09:42:32 +0000
commit4a08059f07e43ed881c7665ec404251ae63adc3d (patch)
treea26a280b4d9ce476c09959fe530bfac81e195194
parentobject/store: Refine docs (diff)
signatureNo signature
object/fetch: Update docs v0.1.136
-rw-r--r--object/fetch/doc.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/object/fetch/doc.go b/object/fetch/doc.go
index 8b51ac10..3908ef30 100644
--- a/object/fetch/doc.go
+++ b/object/fetch/doc.go
@@ -1,3 +1,7 @@
-// Package fetch resolves stored Git objects by exact type, by peeling
-// tree-ish or commit-ish references, and by path within trees.
+// Package fetch loads typed Git objects from object storage and provides
+// higher-level object queries.
+//
+// Fetching is above [objectstore]: it parses stored objects into blobs, trees,
+// commits, and tags, peels tree-ish or commit-ish objects, resolves paths
+// within trees, and can expose one tree as an [io/fs] view.
package fetch