Skip to content

Commit

Permalink
docs(readme): typos
Browse files Browse the repository at this point in the history
  • Loading branch information
satanTime committed May 31, 2020
1 parent e8a0cdf commit cd0d22e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export const selectUsers = rootEntities(
);
```

Now are can use the defined selectors in controllers.
Now we can use the defined selectors in controllers.
```typescript
const user$ = store.select(selectUser, 'userIdValue1');
const users$ = store.select(selectUsers, ['userIdValue1', 'userIdValue2']);
Expand Down Expand Up @@ -202,7 +202,7 @@ export class UserSelectorService {
}
```

Now are can use the defined selectors in controllers.
Now we can use the defined selectors in controllers.
```typescript
const user$ = store.select(userSelectorService.selectUser, 'userIdValue1');
const users$ = store.select(userSelectorService.selectUsers, ['userIdValue1', 'userIdValue2']);
Expand Down Expand Up @@ -576,7 +576,7 @@ this.store.dispatch(new ReduceFlat(response, selectUser));

This action helps to add to store data from a graph response.

Imagine a backend returns the next flat shape of a user:
Imagine a backend returns the next nested shape of a user:
```json
{
"id": "1",
Expand Down

0 comments on commit cd0d22e

Please sign in to comment.