From 5ea9119322ee804bba5516529f94292a6ed6ded4 Mon Sep 17 00:00:00 2001 From: Tony Bove Date: Tue, 9 Jun 2020 12:51:36 -1000 Subject: [PATCH] docs: make correction in Tutorial toh-pt6 (#37516) Fixes issue [29535](https://github.com/angular/angular/issues/29535) for the tutorial (toh-pt6) to remove the phrase that directed the reader to delete mock-heroes.ts when it is still needed for further tutorial steps. PR Close #37516 --- aio/content/tutorial/toh-pt6.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/aio/content/tutorial/toh-pt6.md b/aio/content/tutorial/toh-pt6.md index 2a982a58a8..2119f720d9 100644 --- a/aio/content/tutorial/toh-pt6.md +++ b/aio/content/tutorial/toh-pt6.md @@ -79,7 +79,8 @@ Replace the default contents of `in-memory-data.service.ts` with the following: -The `in-memory-data.service.ts` file replaces `mock-heroes.ts`, which is now safe to delete. +The `in-memory-data.service.ts` file will take over the function of `mock-heroes.ts`. +However, don't delete `mock-heroes.ts` yet, as you still need it for a few more steps of this tutorial. When the server is ready, you'll detach the In-memory Web API, and the app's requests will go through to the server.