Skip to content

Commit 8de68a5

Browse files
author
Malcolm van Raalte
committed
spelling fixes to readme
1 parent 35d9528 commit 8de68a5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Type: `object`
8282
// diff.updatedValues.first (1): the value from the first array
8383
// diff.updatedValues.second (2): the value from the second array (default)
8484
// diff.updatedValues.both (3): both values, as an array [first, second]
85-
// diff.updatedValues.bothWithDeepDiff (4): both value, plus the results of the [deep-diff](https://github.com/flitbit/diff) module; [first, second, deep-diff]
85+
// diff.updatedValues.bothWithDeepDiff (4): both values, plus the results of the deep-diff module; [first, second, deep-diff]
8686
}
8787
```
8888

@@ -104,9 +104,10 @@ const result = diff (first, second, idField, { updatedValues: diff.updatedValues
104104

105105
const result = diff (first, second, idField, { updatedValues: diff.updatedValues.bothWithDeepDiff });
106106
// result.updated is [{ id: 1, letter: 'a' }, { id: 1, letter: 'b' }, { kind: 'E', path: ['letter'], lhs: 'a', rhs: 'b' }]
107-
// see https://github.com/flitbit/diff for more info on dee-diff results
108107
```
109108

109+
See [deep-diff](https://github.com/flitbit/diff) for more info on deep-diff results
110+
110111
## License
111112

112113
MIT

0 commit comments

Comments
 (0)