Skip to content

Commit b16b984

Browse files
lanceliktsn
authored andcommitted
Typo (#906)
1 parent 72f4e45 commit b16b984

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/en/mutations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Since a Vuex store's state is made reactive by Vue, when we mutate the state, Vu
8383

8484
2. When adding new properties to an Object, you should either:
8585

86-
- Use `Vue.set(obj, 'newProp', 123)`, or -
86+
- Use `Vue.set(obj, 'newProp', 123)`, or
8787

8888
- Replace that Object with a fresh one. For example, using the stage-3 [object spread syntax](https://github.com/sebmarkbage/ecmascript-rest-spread) we can write it like this:
8989

docs/ru/mutations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ mutations: {
8383

8484
2. При добавлении новых свойств объекту необходимо либо:
8585

86-
- Использовать `Vue.set(obj, 'newProp', 123)`, либо же -
86+
- Использовать `Vue.set(obj, 'newProp', 123)`, либо же
8787

8888
- Целиком заменить старый объект новым. Например, используя [синтаксис расширения объектов](https://github.com/sebmarkbage/ecmascript-rest-spread) из stage-3, можно написать так:
8989

docs/zh-cn/mutations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ mutations: {
8383

8484
2. 当需要在对象上添加新属性时,你应该
8585

86-
- 使用 `Vue.set(obj, 'newProp', 123)`, 或者 -
86+
- 使用 `Vue.set(obj, 'newProp', 123)`, 或者
8787

8888
- 以新对象替换老对象。例如,利用 stage-3 的[对象展开运算符](https://github.com/sebmarkbage/ecmascript-rest-spread)我们可以这样写:
8989

0 commit comments

Comments
 (0)