From cfe53c2e15e17a6b0bac88e4129b954f4274a1b2 Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Wed, 12 May 2021 18:32:23 +0200 Subject: [PATCH] fix spec --- monaco.d.ts | 2 +- src/monaco.contribution.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/monaco.d.ts b/monaco.d.ts index 760232ef..0da80d0c 100644 --- a/monaco.d.ts +++ b/monaco.d.ts @@ -8,7 +8,7 @@ declare namespace monaco.languages.json { export interface DiagnosticsOptions { /** - * If set, the validator will be enabled and perform syntax and validation schema based validation, + * If set, the validator will be enabled and perform syntax and schema based validation, * unless `DiagnosticsOptions.schemaValidation` is set to `ignore`. */ readonly validate?: boolean; diff --git a/src/monaco.contribution.ts b/src/monaco.contribution.ts index fe70cb3c..7e9d65e3 100644 --- a/src/monaco.contribution.ts +++ b/src/monaco.contribution.ts @@ -10,7 +10,7 @@ import { Emitter, IEvent, languages } from './fillers/monaco-editor-core'; export interface DiagnosticsOptions { /** - * If set, the validator will be enabled and perform syntax and validation schema based validation, + * If set, the validator will be enabled and perform syntax and schema based validation, * unless `DiagnosticsOptions.schemaValidation` is set to `ignore`. */ readonly validate?: boolean;