diff options
Diffstat (limited to 'object/blob')
| -rw-r--r-- | object/blob/blob.go | 7 |
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 } |
