diff options
| author | 2026-03-28 16:36:23 +0000 | |
|---|---|---|
| committer | 2026-03-28 16:36:23 +0000 | |
| commit | 6d3a1ad712d2f0affe06b75b1f2fe05e84e2f8ab (patch) | |
| tree | 303d8bafa0ac5992665c6e93502b24e954e877a5 /object/blob/blob.go | |
| parent | object/tree: Update docs (diff) | |
| signature | No signature | |
object/{blob,commit,tag}: Update docs
Diffstat (limited to 'object/blob/blob.go')
| -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 } |
