Skip to content

Commit

Permalink
docs(nx): remove unnecessary imports and fix spelling.
Browse files Browse the repository at this point in the history
  • Loading branch information
ndcunningham authored and vsavkin committed Aug 13, 2018
1 parent 917525a commit ac5b85e
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions packages/nx/src/data-persistence.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
import { Injectable, Type } from '@angular/core';
import {
ActivatedRouteSnapshot,
RouterStateSnapshot,
RouterState
} from '@angular/router';
import { ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
import { Actions } from '@ngrx/effects';
import { ROUTER_NAVIGATION, RouterNavigationAction } from '@ngrx/router-store';
import { Action, Store } from '@ngrx/store';
import { Observable, of, OperatorFunction } from 'rxjs';
import { Observable, of } from 'rxjs';
import {
catchError,
concatMap,
Expand Down Expand Up @@ -331,7 +327,7 @@ export class DataPersistence<T> {
*
* This is correct, but because it set the concurrency to 1, it may not be performant.
*
* To fix that, you can provide the `id` function, li ke this:
* To fix that, you can provide the `id` function, like this:
*
* ```typescript
* @Injectable()
Expand Down

0 comments on commit ac5b85e

Please sign in to comment.