aboutsummaryrefslogtreecommitdiff
path: root/object/blob/blob.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/blob/blob.go')
-rw-r--r--object/blob/blob.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/object/blob/blob.go b/object/blob/blob.go
index 4ec98fb0..71c1f6f8 100644
--- a/object/blob/blob.go
+++ b/object/blob/blob.go
@@ -3,9 +3,12 @@ package blob
// Blob represents a Git blob object.
//
-// This Blob object is fully materialized in memory.
-// Consider using objectstore/Store.ReadReaderContent,
+// Blob is fully materialized in memory.
+//
+// Consider using objectstore.ReadingStore.ReadReaderContent,
// or appropriate streaming write APIs.
+//
+// Labels: MT-Unsafe.
type Blob struct {
Data []byte
}