From ad64201ba51a3fc8a147ad4811d76a9d5bc86bc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dirk=20B=C3=A4umer?= Date: Wed, 6 Dec 2023 14:47:29 +0100 Subject: [PATCH] Fixes: #1375: metaModel has mismatched backticks/quotes (#1376) --- protocol/metaModel.json | 2 +- types/src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/protocol/metaModel.json b/protocol/metaModel.json index c9abc4e4a..464ff158d 100644 --- a/protocol/metaModel.json +++ b/protocol/metaModel.json @@ -2556,7 +2556,7 @@ "name": "FoldingRangeKind" }, "optional": true, - "documentation": "Describes the kind of the folding range such as `comment' or 'region'. The kind\nis used to categorize folding ranges and used by commands like 'Fold all comments'.\nSee {@link FoldingRangeKind} for an enumeration of standardized kinds." + "documentation": "Describes the kind of the folding range such as 'comment' or 'region'. The kind\nis used to categorize folding ranges and used by commands like 'Fold all comments'.\nSee {@link FoldingRangeKind} for an enumeration of standardized kinds." }, { "name": "collapsedText", diff --git a/types/src/main.ts b/types/src/main.ts index ab863fe1b..32fee0e7b 100644 --- a/types/src/main.ts +++ b/types/src/main.ts @@ -516,7 +516,7 @@ export interface FoldingRange { endCharacter?: uinteger; /** - * Describes the kind of the folding range such as `comment' or 'region'. The kind + * Describes the kind of the folding range such as 'comment' or 'region'. The kind * is used to categorize folding ranges and used by commands like 'Fold all comments'. * See {@link FoldingRangeKind} for an enumeration of standardized kinds. */