From 58db6de653db739793c7256944771d2197f778f1 Mon Sep 17 00:00:00 2001 From: Carlos Galarza Date: Tue, 13 Dec 2016 10:38:11 -0500 Subject: [PATCH] fix(docs): Fix colons in readme.md (#36) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index efa5f0a..eeca10d 100644 --- a/README.md +++ b/README.md @@ -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' } ]; ``` @@ -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' } ]; ```