Skip to content

Commit 4c421a8

Browse files
committed
Fix golint issues
1 parent 9a31ec1 commit 4c421a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package jsonpatch
22

3-
// JSONPatchOption allow to configure the walker instance
3+
// Option allow to configure the walker instance
44
type Option func(r *walker)
55

66
// WithPredicate set a patch Predicate for the walker. This can be used to filter or validate the patch creation

patch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"reflect"
66
)
77

8-
// JSONPatch format is specified in RFC 6902
8+
// JSONPatch format is specified in RFC 6902
99
type JSONPatch struct {
1010
Operation string `json:"op"`
1111
Path string `json:"path"`

0 commit comments

Comments
 (0)