Skip to content

Commit

Permalink
fix(docs): Fix colons in readme.md (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
carloslfu authored and brandonroberts committed Dec 13, 2016
1 parent c3eb4ce commit 58db6de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ In your route configuration, use `loadChildren` with a relative path to your laz
import { Routes } from '@angular/router';

export const routes: Routes = [
{ path: 'lazy', loadChildren './lazy.module#LazyModule' }
{ path: 'lazy', loadChildren: './lazy.module#LazyModule' }
];
```

Expand All @@ -47,7 +47,7 @@ For synchronous module loading, add the `sync=true` as a query string value to y
import { Routes } from '@angular/router';

export const routes: Routes = [
{ path: 'lazy', loadChildren './lazy.module#LazyModule?sync=true' }
{ path: 'lazy', loadChildren: './lazy.module#LazyModule?sync=true' }
];
```

Expand Down

0 comments on commit 58db6de

Please sign in to comment.