From 710384e50b21470a89fc7cccb040f65ee09e423a Mon Sep 17 00:00:00 2001 From: Stephen Carter Date: Thu, 6 Jun 2024 12:53:57 -0400 Subject: [PATCH] Review feedback --- packages/code-analyzer-core/src/messages.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/code-analyzer-core/src/messages.ts b/packages/code-analyzer-core/src/messages.ts index 4da2a8d5..ce1c0c18 100644 --- a/packages/code-analyzer-core/src/messages.ts +++ b/packages/code-analyzer-core/src/messages.ts @@ -20,13 +20,13 @@ const messageCatalog : { [key: string]: string } = { 'The engine with name "%s" threw an unexpected error: %s', PluginErrorFromGetAvailableEngineNames: - `Failed to add engine plugin since the plugin's getAvailableNames method threw an error:\n%s`, + `Failed to add engine plugin. The plugin's getAvailableNames method threw an error:\n%s`, PluginErrorFromCreateEngine: - `Failed to create engine with name "%s" since the plugin's createEngine method threw an error:\n%s`, + `Failed to create engine with name "%s". The plugin's createEngine method threw an error:\n%s`, FailedToDynamicallyLoadModule: - 'Failed to dynamically load module "%s" since an error was thrown: %s', + 'Failed to dynamically load module "%s". Error: %s', FailedToDynamicallyAddEnginePlugin: 'Failed to dynamically add engine plugin from module "%s" because the module does not seem to export a "createEnginePlugin" function.',