From a4f7740332d6104122a8a8ca101b7f9c873c6f9e Mon Sep 17 00:00:00 2001 From: Markus Ende <19502754+Markus-Ende@users.noreply.github.com> Date: Wed, 27 May 2020 15:44:47 +0200 Subject: [PATCH] docs(router): fix a typo in example code (#37309) The code in the example docs used TestBed.configureTestModule instead of TestBed.configureTestingModule. PR Close #37309 --- packages/router/testing/src/router_testing_module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/router/testing/src/router_testing_module.ts b/packages/router/testing/src/router_testing_module.ts index 9906d565e4..36db3c7a08 100644 --- a/packages/router/testing/src/router_testing_module.ts +++ b/packages/router/testing/src/router_testing_module.ts @@ -155,7 +155,7 @@ export function setupTestingRouter( * * ``` * beforeEach(() => { - * TestBed.configureTestModule({ + * TestBed.configureTestingModule({ * imports: [ * RouterTestingModule.withRoutes( * [{path: '', component: BlankCmp}, {path: 'simple', component: SimpleCmp}]