Skip to content

Commit

Permalink
docs: fix module import for EntityDataModule (#1930) (#1932)
Browse files Browse the repository at this point in the history
  • Loading branch information
pegaltier authored and brandonroberts committed Jun 10, 2019
1 parent 1ae1e67 commit 878d31c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/ngrx.io/content/guide/data/entity-metadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ You must register the metadata with the NgRx Data `EntityDefinitionService`.
The easiest way to register metadata is to define a single `EntityMetadataMap` for the entire application and specify it in the one place where you initialize the NgRx Data library:

```typescript
NgRxDataModule.forRoot({
EntityDataModule.forRoot({
...
entityMetadata: appEntityMetadata,
...
Expand Down Expand Up @@ -256,7 +256,7 @@ export const pluralNames = {
Then specify this map while configuring the NgRx Data library.

```typescript
NgRxDataModule.forRoot({
EntityDataModule.forRoot({
...
pluralNames: pluralNames
})
Expand Down

0 comments on commit 878d31c

Please sign in to comment.