From 6f96664ad5ca4226bfb3715795e4a6e0467bd8e5 Mon Sep 17 00:00:00 2001 From: Geo Date: Sat, 26 Dec 2015 00:31:42 -0500 Subject: [PATCH] typo --- 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 ec05cff1df..6c7038b986 100644 --- a/src/guide/components.md +++ b/src/guide/components.md @@ -252,7 +252,7 @@ A common mistake beginners tend to make is attempting to pass down a number usin ``` -However, since this is a literal prop, its value is passed down a the plain string `"1"`, instead of an actual number. If we want to pass down an actual JavaScript number, we need to use the dynamic syntax to make its value be evaluated as a JavaScript expression: +However, since this is a literal prop, its value is passed down as a plain string `"1"`, instead of an actual number. If we want to pass down an actual JavaScript number, we need to use the dynamic syntax to make its value be evaluated as a JavaScript expression: ``` html