chore: fix typo (#12360) [skip ci]

This commit is contained in:
Si Nguyen 2021-11-17 16:16:58 +07:00 committed by GitHub
parent 05d05c0e69
commit 86f8b52822
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ describe('Global API: set/delete', () => {
}).then(done)
})
it('should update a observing object', done => {
it('should update an observing object', done => {
const vm = new Vue({
template: '<div>{{foo.x}}</div>',
data: { foo: { x: 1 }}
@ -26,7 +26,7 @@ describe('Global API: set/delete', () => {
}).then(done)
})
it('should update a observing array', done => {
it('should update an observing array', done => {
const vm = new Vue({
template: '<div><div v-for="v,k in list">{{k}}-{{v}}</div></div>',
data: { list: ['a', 'b', 'c'] }