From b9722491453ebfc485d30af8ffe1791e22764a6d Mon Sep 17 00:00:00 2001 From: Ngnintedem3004 <166013387+Ngnintedem3004@users.noreply.github.com> Date: Mon, 17 Mar 2025 13:38:10 +0100 Subject: [PATCH] docs: Update code snippet visible lines (#60419) Updates the relevant code snippet visible lines to be accurate. PR Close #60419 --- .../src/content/tutorials/first-app/steps/09-services/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/tutorials/first-app/steps/09-services/README.md b/adev/src/content/tutorials/first-app/steps/09-services/README.md index 08480fcb62b..01eeb909966 100644 --- a/adev/src/content/tutorials/first-app/steps/09-services/README.md +++ b/adev/src/content/tutorials/first-app/steps/09-services/README.md @@ -87,7 +87,7 @@ In the **Edit** pane of your IDE, in `src/app/home/home.component.ts`: 1. In `HomeComponent`, add the following code to inject the new service and initialize the data for the app. The `constructor` is the first function that runs when this component is created. The code in the `constructor` will assign the `housingLocationList` the value returned from the call to `getAllHousingLocations`. - + 1. Save the changes to `src/app/home/home.component.ts` and confirm your app builds without error. Correct any errors before you continue to the next step.