diff options
| author | 2026-03-04 14:31:38 +0800 | |
|---|---|---|
| committer | 2026-03-04 14:31:38 +0800 | |
| commit | d585f0889eef41f1386abefe3daa2e617a21895e (patch) | |
| tree | 65b2aa97a84a7ecd3c4b8efb3d3e188b2921b8b2 | |
| parent | *: Fix lints (diff) | |
| signature | No signature | |
*: Add package-level docs v0.1.44
| -rw-r--r-- | cmd/show-object/main.go | 1 | ||||
| -rw-r--r-- | format/doc.go | 2 | ||||
| -rw-r--r-- | internal/adler32/doc.go | 2 | ||||
| -rw-r--r-- | reachability/reachability.go | 1 |
4 files changed, 6 insertions, 0 deletions
diff --git a/cmd/show-object/main.go b/cmd/show-object/main.go index b3f5a9cd..94978db6 100644 --- a/cmd/show-object/main.go +++ b/cmd/show-object/main.go @@ -1,3 +1,4 @@ +// Command show-object provides a small command line utility to show the details of a specified Git object. package main import ( diff --git a/format/doc.go b/format/doc.go new file mode 100644 index 00000000..d84b09e5 --- /dev/null +++ b/format/doc.go @@ -0,0 +1,2 @@ +// Package format encapsulates constants and general-purpose routines for Git-related formats. +package format diff --git a/internal/adler32/doc.go b/internal/adler32/doc.go new file mode 100644 index 00000000..add30867 --- /dev/null +++ b/internal/adler32/doc.go @@ -0,0 +1,2 @@ +// Package adler32 implements an SIMD-optimized Adler-32 checksum. +package adler32 diff --git a/reachability/reachability.go b/reachability/reachability.go index 93bc840b..12f672e3 100644 --- a/reachability/reachability.go +++ b/reachability/reachability.go @@ -1,3 +1,4 @@ +// Package reachability traverses the object graph to test relationships and emit object lists. package reachability import ( |
