Skip to content

Commit be59601

Browse files
committed
Fixed typos
1 parent 45e0059 commit be59601

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ and include some instructions on running.
2727

2828
## Component Structure
2929

30-
This project is structure in such a way that it mimics the eventual setup
30+
This project is structured in such a way that it mimics the eventual setup
3131
of our UI toolkit.
3232

3333
For example:
@@ -44,21 +44,21 @@ For example:
4444

4545
`AppSearchProvider` - The "Provider" is configured at the top level of your App.
4646
You pass it an instance of `AppSearchDriver`, which is configured for your
47-
account and engine. This "Provider" uses React's "Context" API to hold state
47+
Account and Engine. This "Provider" uses React's "Context" API to hold state
4848
and expose that state to other App Search components in the component tree.
4949
`AppSearchDriver` - Non-React "driver" class. The idea is to hold all non-React
5050
specific logic here, so that it can be shared across multiple toolkits
5151
`containers/{SearchBox,Meta,Results}` - These are individual "Connected" App
5252
Search Components. They are aware of state provided by AppSearchProvider and can
5353
update that state as well. They have no "View" of their own, they simply hold
54-
the logic. This means that any "View" component could be swapped in.
54+
implement the logic. This means that any "View" component could be swapped in.
5555

5656
Not shown above, but included in this project:
5757

5858
`components/{SearchBox,Meta,Results,Result` - These are individual "View"
59-
components. They have no logic and are not aware of App Search. They simply take
60-
simple properties are render them. These would be the "default" views for
61-
UI Toolkit, but could be easily swapped out.
59+
components. They have no logic and are not aware of App Search. They take
60+
simple properties and render them in a template. These would be the "default"
61+
views for UI Toolkit, but could be easily swapped out.
6262
`app-search/withAppSearch` - A higher order component that a Toolkit user could
6363
use to connect any component to the App Search state. This enables users to
6464
write their own components.

0 commit comments

Comments
 (0)