From d24540f85fe176b618d48c911a8a58dcabcb64dc Mon Sep 17 00:00:00 2001 From: aniket-engg Date: Tue, 5 Sep 2023 13:18:08 +0530 Subject: [PATCH] text update --- libs/remix-ui/editor/src/lib/providers/quickfixes.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/remix-ui/editor/src/lib/providers/quickfixes.ts b/libs/remix-ui/editor/src/lib/providers/quickfixes.ts index a14b67b481..683671f3f4 100644 --- a/libs/remix-ui/editor/src/lib/providers/quickfixes.ts +++ b/libs/remix-ui/editor/src/lib/providers/quickfixes.ts @@ -109,16 +109,16 @@ export default { 'TypeError: Trying to override non-virtual function. Did you forget to add "virtual"':[ { id: 6, - title: "Add 'virtual' to function", - message: 'virtual ', + title: "Add 'virtual' specifier", + message: 'virtual', nodeType: 'FunctionDefinition' } ], 'TypeError: Overriding function is missing "override" specifier':[ { id: 7, - title: "Add 'override' to function", - message: 'override ', + title: "Add 'override' specifier", + message: 'override', nodeType: 'FunctionDefinition' } ],