Skip to content

Commit d6faa23

Browse files
committed
Fix typos
1 parent 15d7247 commit d6faa23

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ func main() {
4545

4646
## Options
4747
### Filter patches using Predicates
48-
The option `WithPredicate` set a patch `Predicate` which can be used to filter or validate the patch creation.
49-
For each kind (`add`, `remove` and `replace`) of a patch a dedicated filter function can be configured. The
48+
The option `WithPredicate` sets a patch `Predicate` which can be used to filter or validate the patch creation.
49+
For each kind of patch (`add`, `remove` and `replace`) a dedicated filter function can be configured. The
5050
predicate will be checked before a patch is created, or the JSON object is processed further.
5151

5252
#### Example
@@ -140,8 +140,8 @@ func main() {
140140

141141
### Ignore slice order
142142
There are two options to ignore the slice order:
143-
- `IgnoreSliceOrder` will ignore the order of all slices of built-in in types (e.g. `int`, `string`) during the patch creation
144-
and will use instead the value itself in order to match and compare the current and modified JSON.
143+
- `IgnoreSliceOrder` will ignore the order of all slices of built-in types (e.g. `int`, `string`) during the patch creation
144+
and will instead use the value itself in order to match and compare the current and modified JSON.
145145
- `IgnoreSliceOrderWithPattern` allows to specify for which slices the order should be ignored using JSONPointer patterns (e.g. `/jobs`, `/jobs/*`).
146146
Furthermore, the slice order of structs (and pointer of structs) slices can be ignored by specifying a JSON field which should be used
147147
to match the struct values.

options.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func WithPrefix(prefix []string) Option {
2828
}
2929
}
3030

31-
// IgnoreSliceOrder will ignore the order of all slices of built-in in types during the walk and will use instead the value
31+
// IgnoreSliceOrder will ignore the order of all slices of built-in types during the walk and will use instead the value
3232
// itself in order to compare the current and modified JSON.
3333
// NOTE: ignoring order only works if the elements in each slice are unique
3434
func IgnoreSliceOrder() Option {

0 commit comments

Comments
 (0)