diff options
| author | Fuwn <[email protected]> | 2026-02-27 00:13:16 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-27 00:13:16 -0800 |
| commit | 3e9b532ecaee972af2963ad7806515639f1d3f30 (patch) | |
| tree | 1dbb57848838246fa44b36726d81d03c0da02dea /internal/types | |
| parent | feat: Apply Iku formatting (diff) | |
| download | plutia-test-3e9b532ecaee972af2963ad7806515639f1d3f30.tar.xz plutia-test-3e9b532ecaee972af2963ad7806515639f1d3f30.zip | |
chore: improve user-facing API copy clarity and consistency
Diffstat (limited to 'internal/types')
| -rw-r--r-- | internal/types/operation.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/types/operation.go b/internal/types/operation.go index d659a92..41bb666 100644 --- a/internal/types/operation.go +++ b/internal/types/operation.go @@ -50,7 +50,7 @@ func CanonicalizeJSON(raw []byte) ([]byte, error) { func ParseOperation(rec ExportRecord) (ParsedOperation, error) { if rec.DID == "" { - return ParsedOperation{}, fmt.Errorf("missing did") + return ParsedOperation{}, fmt.Errorf("missing DID") } canonical, err := CanonicalizeJSON(rec.Operation) |