File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import { StateRule } from '../url/interface';
2424 * ```
2525 * .state('abc', {
2626 * component: 'fooComponent',
27- * lazyLoad: () => System. import('./fooComponent')
27+ * lazyLoad: () => import('./fooComponent')
2828 * });
2929 * ```
3030 *
Original file line number Diff line number Diff line change @@ -563,7 +563,7 @@ export interface StateDeclaration {
563563 *
564564 * ```
565565 * .state('abc', {
566- * lazyLoad: (transition, state) => System. import('./abcService')
566+ * lazyLoad: (transition, state) => import('./abcService')
567567 * }
568568 * ```
569569 *
@@ -621,7 +621,7 @@ export interface StateDeclaration {
621621 * {
622622 * name: 'parent.**',
623623 * url: '/parent',
624- * lazyLoad: () => System. import('./lazy.states.js')
624+ * lazyLoad: () => import('./lazy.states.js')
625625 * }
626626 * ```
627627 *
You can’t perform that action at this time.
0 commit comments