Skip to content

Commit 58db6de

Browse files
carloslfubrandonroberts
authored andcommitted
fix(docs): Fix colons in readme.md (#36)
1 parent c3eb4ce commit 58db6de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ In your route configuration, use `loadChildren` with a relative path to your laz
3535
import { Routes } from '@angular/router';
3636

3737
export const routes: Routes = [
38-
{ path: 'lazy', loadChildren './lazy.module#LazyModule' }
38+
{ path: 'lazy', loadChildren: './lazy.module#LazyModule' }
3939
];
4040
```
4141

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

4949
export const routes: Routes = [
50-
{ path: 'lazy', loadChildren './lazy.module#LazyModule?sync=true' }
50+
{ path: 'lazy', loadChildren: './lazy.module#LazyModule?sync=true' }
5151
];
5252
```
5353

0 commit comments

Comments
 (0)