Skip to content

Commit 86f8b52

Browse files
authored
chore: fix typo (#12360) [skip ci]
1 parent 05d05c0 commit 86f8b52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: test/unit/features/global-api/set-delete.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe('Global API: set/delete', () => {
1414
}).then(done)
1515
})
1616

17-
it('should update a observing object', done => {
17+
it('should update an observing object', done => {
1818
const vm = new Vue({
1919
template: '<div>{{foo.x}}</div>',
2020
data: { foo: { x: 1 }}
@@ -26,7 +26,7 @@ describe('Global API: set/delete', () => {
2626
}).then(done)
2727
})
2828

29-
it('should update a observing array', done => {
29+
it('should update an observing array', done => {
3030
const vm = new Vue({
3131
template: '<div><div v-for="v,k in list">{{k}}-{{v}}</div></div>',
3232
data: { list: ['a', 'b', 'c'] }

0 commit comments

Comments
 (0)