Skip to content

Commit 7c52249

Browse files
committed
Typos
1 parent 78720df commit 7c52249

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/vue/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ ready () {
5757
```
5858

5959

60-
You can also change the default subcription method be defining the `Vue.config.meteor.subscribe` function:
60+
You can also change the default subscription method by defining the `Vue.config.meteor.subscribe` function:
6161

6262

6363
```javascript
@@ -79,8 +79,8 @@ Vue.config.meteor.subscribe = function(...args) {
7979

8080
You can make your component `data` properties update from any Meteor reactive sources (like collections or session) by putting an object for each property in the `data` object. The object key is the name of the property, and the value is either a function or an object with the following attributes:
8181

82-
- `params()` (optionnal), a function returning an object, which can use any *Vue* reactive property,
83-
- `update([params])`, a function with optionnal `params` argument, that returns the value to update the corresponding `data` property of the component. Here you can use *Meteor* reactive sources, but **no Vue reactive property getters**. The `params` argument is the object returned by the `params()` function described above.
82+
- `params()` (optional), a function returning an object, which can use any *Vue* reactive property,
83+
- `update([params])`, a function with optional `params` argument, that returns the value to update the corresponding `data` property of the component. Here you can use *Meteor* reactive sources, but **no Vue reactive property getters**. The `params` argument is the object returned by the `params()` function described above.
8484

8585
Here is an example:
8686

0 commit comments

Comments
 (0)