From dd03af6947bfd621dc662a6e124f5cabb7c55e20 Mon Sep 17 00:00:00 2001 From: chaudhary-anurag <33592056+chaudhary-anurag@users.noreply.github.com> Date: Mon, 5 Nov 2018 14:38:56 +0530 Subject: [PATCH] fixed minor typos (#21702) --- guide/english/vue/declarative-rendering/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/guide/english/vue/declarative-rendering/index.md b/guide/english/vue/declarative-rendering/index.md index 3c11f7494e..9260b9ea15 100644 --- a/guide/english/vue/declarative-rendering/index.md +++ b/guide/english/vue/declarative-rendering/index.md @@ -47,13 +47,13 @@ let app = new Vue({ }); ``` -With those snipets, you're telling Vue to dynamically render whatever is stored +With those snippets, you're telling Vue to dynamically render whatever is stored inside `message` variable. And the fun: whenever `message` is changed, Vue.js manages to reload that specific part of the DOM and you see the change. -If you want to try this reactivity out, open the console and change de value -of `app.message` to, say, `"Hello from console"`. Did you notice the change in +If you want to try this reactivity out, open the console and change the value +of `app.message` to say, `"Hello from console"`. Did you notice the change in the page? The `{{ ... }}` is the syntax for that behavior: outputting the value @@ -66,7 +66,7 @@ will result in `hello`: ``` -There're cases which what we want is to set an attribute using our Vue app's +There're cases in which what we want is to set an attribute using our Vue app's variable. You might think that the same syntax applies, but Vue has something specific for that, what we call "binding".