Skip to content

Commit 0fb25d5

Browse files
committed
Fix typo in README
1 parent 53958e1 commit 0fb25d5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
## 😎 Description 🙏
44

5-
Maps a javascript objects to arbitrary create, update and delete functions.
5+
Maps javascript objects to arbitrary create, update and delete functions.
66

7-
Can be used to sync stateful or stateless components to some other provider of data.
7+
Can be used to sync stateful or stateless components with some other provider of data.
88

99
## 🚀 Installation 😱
1010

@@ -23,7 +23,9 @@ const bar = () => ({
2323
delete: (absolute) => console.log("Delete", absolute),
2424
});
2525

26-
const run = oneWayDataBindingLibraryJs({ "foo.bar": bar });
26+
const run = oneWayDataBindingLibraryJs({
27+
"foo.bar": bar,
28+
});
2729

2830
// Create
2931
run(() => ({ foo: { bar: { hello: "world" } } }));

0 commit comments

Comments
 (0)