Skip to content

Commit

Permalink
docs(Entity): Fix wrong import example
Browse files Browse the repository at this point in the history
  • Loading branch information
sandangel committed Dec 28, 2017
1 parent 62506e6 commit 0046184
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/entity/adapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ against the collection type. The method takes an object for configuration with 2
Usage:

```ts
import { EntityState, EntityAdapter, createEntityAdapter, Update } from '@ngrx/entity';
import { EntityState, EntityAdapter, createEntityAdapter } from '@ngrx/entity';

export interface User {
id: string;
Expand Down Expand Up @@ -103,6 +103,7 @@ export interface User {
```ts
import { Action } from '@ngrx/store';
import { User } from './user.model';
import { Update } from '@ngrx/entity';

export const LOAD_USERS = '[User] Load Users';
export const ADD_USER = '[User] Add User';
Expand Down

0 comments on commit 0046184

Please sign in to comment.