diff --git a/src/compiler/compile/compiler_warnings.ts b/src/compiler/compile/compiler_warnings.ts index 3a11e04bd1..bbc12617e9 100644 --- a/src/compiler/compile/compiler_warnings.ts +++ b/src/compiler/compile/compiler_warnings.ts @@ -197,6 +197,6 @@ export default { }, invalid_rest_eachblock_binding: (rest_element_name: string) => ({ code: 'invalid-rest-eachblock-binding', - message: `...${rest_element_name} operator will create a new object and binding propogation with original object will not work` + message: `...${rest_element_name} operator will create a new object and binding propagation with original object will not work` }) }; diff --git a/test/validator/samples/rest-eachblock-binding-2/warnings.json b/test/validator/samples/rest-eachblock-binding-2/warnings.json index a55e08ac05..921f14c619 100644 --- a/test/validator/samples/rest-eachblock-binding-2/warnings.json +++ b/test/validator/samples/rest-eachblock-binding-2/warnings.json @@ -1,7 +1,7 @@ [ { "code": "invalid-rest-eachblock-binding", - "message": "...rest operator will create a new object and binding propogation with original object will not work", + "message": "...rest operator will create a new object and binding propagation with original object will not work", "pos": 102, "start": { "line": 8, "column": 24, "character": 102 }, "end": { "line": 8, "column": 31, "character": 109 } diff --git a/test/validator/samples/rest-eachblock-binding-3/warnings.json b/test/validator/samples/rest-eachblock-binding-3/warnings.json index c3410b3888..8da9d536d1 100644 --- a/test/validator/samples/rest-eachblock-binding-3/warnings.json +++ b/test/validator/samples/rest-eachblock-binding-3/warnings.json @@ -1,7 +1,7 @@ [ { "code": "invalid-rest-eachblock-binding", - "message": "...rest operator will create a new object and binding propogation with original object will not work", + "message": "...rest operator will create a new object and binding propagation with original object will not work", "pos": 168, "start": { "line": 5, "column": 32, "character": 168 }, "end": { "line": 5, "column": 39, "character": 175 } diff --git a/test/validator/samples/rest-eachblock-binding/warnings.json b/test/validator/samples/rest-eachblock-binding/warnings.json index d5d34f31d1..12942ec95a 100644 --- a/test/validator/samples/rest-eachblock-binding/warnings.json +++ b/test/validator/samples/rest-eachblock-binding/warnings.json @@ -1,7 +1,7 @@ [ { "code": "invalid-rest-eachblock-binding", - "message": "...rest operator will create a new object and binding propogation with original object will not work", + "message": "...rest operator will create a new object and binding propagation with original object will not work", "pos": 143, "start": { "line": 5, "column": 25, "character": 143 }, "end": { "line": 5, "column": 32, "character": 150 }