diff options
| author | 2026-05-16 10:51:00 +0000 | |
|---|---|---|
| committer | 2026-05-16 10:51:00 +0000 | |
| commit | b2bd9a1d5944c31983997c2cf0f65c0e6e9d31dc (patch) | |
| tree | 998af62995d263bd45f3220aa0a19b5dca253118 /object/store/reader.go | |
| parent | object/store: Simplify; remove composited writer and quarantiner (diff) | |
| signature | No signature | |
object/store: Reader -> ObjectReader
Diffstat (limited to 'object/store/reader.go')
| -rw-r--r-- | object/store/reader.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/object/store/reader.go b/object/store/reader.go index ac1a10ee..e46ad41f 100644 --- a/object/store/reader.go +++ b/object/store/reader.go @@ -7,13 +7,13 @@ import ( "codeberg.org/lindenii/furgit/object/typ" ) -// Reader reads Git objects by object ID. +// ObjectReader reads Git objects by object ID. // // Methods may perform implementation-defined integrity verification // beyond successfully producing their documented result. // // Labels: MT-Safe. -type Reader interface { +type ObjectReader interface { // ReadBytesFull reads a full serialized object as "type size\0content". // // In a valid repository, |
