Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _specifications/lsp/3.17/language/foldingRange.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export interface FoldingRangeClientCapabilities {
*/
lineFoldingOnly?: boolean;
/**
* If set, the client signals that it supports setting collapsedText on
* If set, the client signals that it supports setting `collapsedText` on
* folding ranges to display instead of the default text.
*
* @since 3.17.0 - proposed
Expand Down Expand Up @@ -147,7 +147,7 @@ export interface FoldingRange {
* 'Fold all comments'. See [FoldingRangeKind](#FoldingRangeKind) for an
* enumeration of standardized kinds.
*/
kind?: string;
kind?: FoldingRangeKind;

/**
* The text that the client should show when the specified range is
Expand Down