From bf0baec3924dc55ccb936330b63d9b921fa40d75 Mon Sep 17 00:00:00 2001 From: "Ian Y. Choi" Date: Wed, 25 Jul 2018 01:35:46 +0900 Subject: [PATCH] Fixes a typo: Mimunum -> Minimum (#1994) (trivial) --- .../insights/views/charts/types/barChart.contribution.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sql/parts/dashboard/widgets/insights/views/charts/types/barChart.contribution.ts b/src/sql/parts/dashboard/widgets/insights/views/charts/types/barChart.contribution.ts index 8e5318eeff..3e1f2ce2f6 100644 --- a/src/sql/parts/dashboard/widgets/insights/views/charts/types/barChart.contribution.ts +++ b/src/sql/parts/dashboard/widgets/insights/views/charts/types/barChart.contribution.ts @@ -16,7 +16,7 @@ const properties: IJSONSchema = { properties: { yAxisMin: { type: 'number', - description: nls.localize('yAxisMin', "Minumum value of the y axis") + description: nls.localize('yAxisMin', "Minimum value of the y axis") }, yAxisMax: { type: 'number', @@ -28,7 +28,7 @@ const properties: IJSONSchema = { }, xAxisMin: { type: 'number', - description: nls.localize('xAxisMin', "Minumum value of the x axis") + description: nls.localize('xAxisMin', "Minimum value of the x axis") }, xAxisMax: { type: 'number',