From ff51e0933b4c19dddc90959f9a7b22cd132bfcd2 Mon Sep 17 00:00:00 2001 From: macvag Date: Sat, 6 Jan 2024 13:42:04 +0200 Subject: [PATCH] docs: fix broken hyperlink in tutorials first app search (#53816) PR Close #53816 --- adev/src/content/tutorials/first-app/steps/13-search/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/tutorials/first-app/steps/13-search/README.md b/adev/src/content/tutorials/first-app/steps/13-search/README.md index cd6227f6734..2918e9a2a31 100644 --- a/adev/src/content/tutorials/first-app/steps/13-search/README.md +++ b/adev/src/content/tutorials/first-app/steps/13-search/README.md @@ -39,7 +39,7 @@ The `HomeComponent` already contains an input field that you will use to capture <input type="text" placeholder="Filter by city" #filter> - This example uses a [template reference variable](/guide/templatess) to get access to the `input` element as its value. + This example uses a [template reference variable](/guide/templates) to get access to the `input` element as its value. 1. Next, update the component template to attach an event handler to the "Search" button.