Skip to content

Commit 9deb848

Browse files
committed
Merge pull request #53 from psalaets/master
Rewording for clarity and a typo fix
2 parents dbae1d6 + 5647a90 commit 9deb848

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

source/guide/application.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ All Vue instances can have their raw `$data` directly serialized with `JSON.stri
5959

6060
## Unit Testing
6161

62-
Anything compatible with a CommonJS-based build system works. A recommendation is using the [Karma](http://karma-runner.github.io/0.12/index.html) test runner together with is [CommonJS pre-processor](https://github.com/karma-runner/karma-commonjs) to test your code modually.
62+
Anything compatible with a CommonJS-based build system works. A recommendation is using the [Karma](http://karma-runner.github.io/0.12/index.html) test runner together with its [CommonJS pre-processor](https://github.com/karma-runner/karma-commonjs) to test your code modularly.
6363

6464
The best practice is to export raw options / functions inside modules. Consider this example:
6565

source/guide/directives.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you have not used AngularJS before, you probably don't know what a directive
1919
<div v-text="message"></div>
2020
```
2121

22-
Here the prefix is `v` which is the default. The directive ID is `text` and the the expression is `message`. This directive instructs Vue.js to update the div's `textContent` whenever the `message` property on the Vue instance changes.
22+
Here the prefix is `v` which is the default. The directive ID is `text` and the expression is `message`. This directive instructs Vue.js to update the div's `textContent` whenever the `message` property on the Vue instance changes.
2323

2424
## Inline Expressions
2525

@@ -92,4 +92,4 @@ Some directives don't even expect an attribute value - they simply do something
9292

9393
A full list of empty directives can be found in the [API reference](/api/directives.html#Empty_Directives).
9494

95-
Next, let's talk about [Filters](/guide/filters.html).
95+
Next, let's talk about [Filters](/guide/filters.html).

source/guide/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Prefixed HTML attributes that tell Vue.js to do something about a DOM element.
6363
<div v-text="message"></div>
6464
```
6565

66-
Here the div element has a `v-text` directive with the value `message`. What it does is telling Vue.js to keep the div's textContent in sync with the Vue instance's `message` property.
66+
Here the div element has a `v-text` directive with the value `message`. This tells Vue.js to keep the div's textContent in sync with the Vue instance's `message` property.
6767

6868
Directives can encapsulate arbitrary DOM manipulations. For example `v-attr` manipulates an element's attributes, `v-repeat` clones an element based on an Array, `v-on` attaches event listeners... we will cover them later.
6969

0 commit comments

Comments
 (0)