Skip to content

Commit

Permalink
Merge pull request #20 from ngrx/master
Browse files Browse the repository at this point in the history
chore(docs): Minor fixes to entity interfaces documentation (ngrx#390)
  • Loading branch information
GulajavaMinistudio authored Sep 16, 2017
2 parents 69434ac + 9e1375d commit a0ed2a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/entity/interfaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ The Entity State is a predefined generic interface for a given entity collection

export interface State extends EntityState<User> {
// additional entity state properties
selectedUserId: string | null;
selectedUserId: number | null;
}
```

## EntityAdapter<T>

Provides a generic type interface for the provided [entity adapter](./adapter#createEntityAdapter). The entity adapter provides many [collection methods](./adapter.md#adapter-collection-methods) for managing the entity state.
Provides a generic type interface for the provided [entity adapter](./adapter.md#createentityadapter). The entity adapter provides many [collection methods](./adapter.md#adapter-collection-methods) for managing the entity state.

Usage:

Expand Down

0 comments on commit a0ed2a6

Please sign in to comment.