Skip to content

Commit 6a66161

Browse files
jalmarazgjamiebuilds
authored andcommitted
Fixes typo in documentation changing <Provide> to <Provider>
1 parent b5d12e1 commit 6a66161

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ good stuff).
484484

485485
A good pattern for doing this might be to add a constructor to your container
486486
which accepts `props` sorta like React components. Then create your own
487-
instance of your container and pass it into `<Provide inject>`.
487+
instance of your container and pass it into `<Provider inject>`.
488488

489489
```js
490490
class CounterContainer extends Container {
@@ -506,8 +506,8 @@ let counter = new CounterContainer({
506506
});
507507

508508
render(
509-
<Provide inject={[counter]}>
509+
<Provider inject={[counter]}>
510510
<Counter />
511-
</Provide>
511+
</Provider>
512512
);
513513
```

0 commit comments

Comments
 (0)