Skip to content

Commit

Permalink
Fix diff-apply README (#457)
Browse files Browse the repository at this point in the history
  • Loading branch information
angus-c authored May 21, 2022
1 parent 48cf4fe commit 7893d47
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ yarn add just-diff-apply
Apply a diff object to an object. Pass converter to apply a http://jsonpatch.com standard patch

```js
import diffApply from 'just-diff-apply';
import {diffApply} from 'just-diff-apply';

const obj1 = {a: 3, b: 5};
diffApply(obj1,
Expand Down
2 changes: 1 addition & 1 deletion md-variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@
"dir": "collection-diff-apply",
"description": "Apply a diff object to an object. Pass converter to apply a http://jsonpatch.com standard patch",
"examples": [
" import diffApply from 'just-diff-apply';",
" import {diffApply} from 'just-diff-apply';",
"",
" const obj1 = {a: 3, b: 5};",
" diffApply(obj1,",
Expand Down
2 changes: 1 addition & 1 deletion packages/collection-diff-apply/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ yarn add just-diff-apply
Apply a diff object to an object. Pass converter to apply a http://jsonpatch.com standard patch

```js
import diffApply from 'just-diff-apply';
import {diffApply} from 'just-diff-apply';

const obj1 = {a: 3, b: 5};
diffApply(obj1,
Expand Down

0 comments on commit 7893d47

Please sign in to comment.