From 3da7e908bb1c67e01345e9fda449d36eec31bdf3 Mon Sep 17 00:00:00 2001 From: Tyler Luckewicz Date: Tue, 28 Jan 2025 09:32:18 -0500 Subject: [PATCH] docs(docs-infra): fix gammatical error in two way binding with plain properties section (#59755) PR Close #59755 --- adev/src/content/guide/components/inputs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/guide/components/inputs.md b/adev/src/content/guide/components/inputs.md index 2716253cd48..9c4425fce07 100644 --- a/adev/src/content/guide/components/inputs.md +++ b/adev/src/content/guide/components/inputs.md @@ -232,7 +232,7 @@ export class MediaControls { } ``` -In the example above, the `CustomSlider` can write values into its `value` model input, which then propagates those values back to the `volume` property in `MediaControls`. This binding keeps that values of `value` and `volume` in sync. +In the example above, the `CustomSlider` can write values into its `value` model input, which then propagates those values back to the `volume` property in `MediaControls`. This binding keeps the values of `value` and `volume` in sync. ### Implicit `change` events