From b13101fd00d55e0acef8a14af994a15f96af757f Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Mon, 5 Jul 2021 07:58:33 +0900 Subject: [PATCH] Monaco: fix typo in types.ts (#36412) guarentee -> guarantee --- packages/grafana-ui/src/components/Monaco/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/components/Monaco/types.ts b/packages/grafana-ui/src/components/Monaco/types.ts index 82cb1f5861b..966c038d627 100644 --- a/packages/grafana-ui/src/components/Monaco/types.ts +++ b/packages/grafana-ui/src/components/Monaco/types.ts @@ -1,4 +1,4 @@ -// We use `import type` to guarentee it'll be erased from the JS and it doesnt accidently bundle monaco +// We use `import type` to guarantee it'll be erased from the JS and it doesnt accidently bundle monaco import type * as monacoType from 'monaco-editor/esm/vs/editor/editor.api'; export type CodeEditorChangeHandler = (value: string) => void;