From f503832abe3e5ae16a53e87a93389cf406a1eee0 Mon Sep 17 00:00:00 2001 From: ajitsinghkaler Date: Tue, 10 Dec 2019 20:17:03 +0530 Subject: [PATCH] docs: fix headers in "Getting Started" code-snippets (#34321) The headers of two of the code-snippets in the [Input section](https://angular.io/start#input) of the "Getting Started" guide incorrectly referenced an non-existent file path (`src/app/product-list/product-alerts.component.ts`). This commit fixes the headers to show the correct file path (`src/app/product-alerts/product-alerts.component.ts`). Fixes #34320 PR Close #34321 --- aio/content/start/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/start/index.md b/aio/content/start/index.md index 6d0bf44ab7..a0f0069999 100644 --- a/aio/content/start/index.md +++ b/aio/content/start/index.md @@ -255,11 +255,11 @@ The next step is to create a new alert feature that takes a product as an input. 1. Import `Input` from `@angular/core`. - + 1. In the `ProductAlertsComponent` class definition, define a property named `product` with an `@Input()` decorator. The `@Input()` decorator indicates that the property value passes in from the component's parent, the product list component. - + 1. Define the view for the new product alert component.