Skip to content

Commit e46f1fd

Browse files
bors[bot]Wilfred
andauthored
Merge #10755
10755: Fix type names in typescript sample code r=lnicola a=Wilfred `bool` is Rust, whereas `boolean` is the type name in TypeScript. Co-authored-by: Wilfred Hughes <[email protected]>
2 parents d83b76d + 54b636f commit e46f1fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/dev/lsp-extensions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ interface SsrParams {
272272
/// The specific syntax is specified outside of the protocol.
273273
query: string,
274274
/// If true, only check the syntax of the query and don't compute the actual edit.
275-
parseOnly: bool,
275+
parseOnly: boolean,
276276
/// The current text document. This and `position` will be used to determine in what scope
277277
/// paths in `query` should be resolved.
278278
textDocument: TextDocumentIdentifier;
@@ -449,7 +449,7 @@ interface ServerStatusParams {
449449
health: "ok" | "warning" | "error",
450450
/// Is there any pending background work which might change the status?
451451
/// For example, are dependencies being downloaded?
452-
quiescent: bool,
452+
quiescent: boolean,
453453
/// Explanatory message to show on hover.
454454
message?: string,
455455
}

0 commit comments

Comments
 (0)