From ec16f608fae17f8ccea9e3b5d529b6dfac135c2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=89=E7=82=B9?= Date: Mon, 26 Oct 2015 21:41:18 +0800 Subject: [PATCH] Remove duplicate word --- src/guide/components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/components.md b/src/guide/components.md index a25ccb1bb5..a7bf5bd040 100644 --- a/src/guide/components.md +++ b/src/guide/components.md @@ -258,7 +258,7 @@ Compare the syntax: ``` -The two-way binding will sync the change of child's `msg` property back to the parent's `parentMsg` property. The one-time binding, once set up, will not sync future changes between the the parent and the child. +The two-way binding will sync the change of child's `msg` property back to the parent's `parentMsg` property. The one-time binding, once set up, will not sync future changes between the parent and the child.

Note that if the prop being passed down is an Object or an Array, it is passed by reference. Mutating the Object or Array itself inside the child **will** affect parent state, regardless of the binding type you are using.