Skip to content

Commit

Permalink
fix text
Browse files Browse the repository at this point in the history
Signed-off-by: Yevhen Vydolob <[email protected]>
  • Loading branch information
evidolob committed Mar 17, 2023
1 parent c89a220 commit d4ad182
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/crc-setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export async function setUpCrc(logger: extensionApi.Logger, askForPreset = false
if (!preset) {
extensionApi.window.showNotification({
title: productName,
body: 'Default preset will used.',
body: 'Default preset will be used.',
});
} else {
await execPromise(getCrcCli(), ['config', 'set', 'preset', preset.data]);
Expand Down Expand Up @@ -78,7 +78,7 @@ export async function setUpCrc(logger: extensionApi.Logger, askForPreset = false
setupBar.text = 'All done.';
} catch (err) {
console.error(err);
extensionApi.window.showErrorMessage(`${productName} configuration is fail:\n${err}`);
extensionApi.window.showErrorMessage(`${productName} configuration failed:\n${err}`);
return false;
} finally {
setupBar.hide();
Expand All @@ -101,8 +101,8 @@ function createPresetItems(): PresetQuickPickItem[] {
{
data: 'microshift',
label: 'microshift',
description: 'MicroShift is a optimized OpenShift Kubernetes for small form factor and edge computing.',
detail: 'MicroShift is a optimized OpenShift Kubernetes for small form factor and edge computing.',
description: 'MicroShift is an optimized OpenShift Kubernetes for small form factor and edge computing.',
detail: 'MicroShift is an optimized OpenShift Kubernetes for small form factor and edge computing.',
},
];
}

0 comments on commit d4ad182

Please sign in to comment.