Skip to content

Commit

Permalink
Fixes: #1375: metaModel has mismatched backticks/quotes (#1376)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaeumer authored Dec 6, 2023
1 parent 1ddfc55 commit ad64201
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion protocol/metaModel.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion types/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down

0 comments on commit ad64201

Please sign in to comment.