| commit | 8732d437505cb1280004bcaa8a330aaf57ba402e | [log] [tgz] |
|---|---|---|
| author | Tim Windelschmidt <tim@monogon.tech> | Thu Apr 18 23:20:05 2024 +0200 |
| committer | Tim Windelschmidt <tim@monogon.tech> | Wed Apr 24 22:29:11 2024 +0000 |
| tree | f2509dc348a4e886020a85cdb41f3ea74aa763c3 | |
| parent | 51daf25d90adca76375e0d141c93d692ab2cd2eb [diff] |
treewide: documentation on exported types should start with their name Change-Id: I2e25157459ecc55421138e9fb6a15de5024d00fd Reviewed-on: https://review.monogon.dev/c/monogon/+/3028 Reviewed-by: Serge Bazanski <serge@monogon.tech> Vouch-Run-CI: Tim Windelschmidt <tim@monogon.tech> Tested-by: Jenkins CI
diff --git a/metropolis/pkg/jsonpatch/jsonpatch.go b/metropolis/pkg/jsonpatch/jsonpatch.go index be3d302..fe0fbac 100644 --- a/metropolis/pkg/jsonpatch/jsonpatch.go +++ b/metropolis/pkg/jsonpatch/jsonpatch.go
@@ -20,7 +20,7 @@ import "strings" -// JSON Patch operation (RFC 6902 Section 4) +// JsonPatchOp describes a JSON Patch operation (RFC 6902 Section 4) type JsonPatchOp struct { Operation string `json:"op"` Path string `json:"path"` // Technically a JSON Pointer, but called Path in the RFC