mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 13:18:47 +00:00
Fix type names in typescript sample code
This commit is contained in:
parent
d83b76d834
commit
54b636f1e2
1 changed files with 2 additions and 2 deletions
|
@ -272,7 +272,7 @@ interface SsrParams {
|
|||
/// The specific syntax is specified outside of the protocol.
|
||||
query: string,
|
||||
/// If true, only check the syntax of the query and don't compute the actual edit.
|
||||
parseOnly: bool,
|
||||
parseOnly: boolean,
|
||||
/// The current text document. This and `position` will be used to determine in what scope
|
||||
/// paths in `query` should be resolved.
|
||||
textDocument: TextDocumentIdentifier;
|
||||
|
@ -449,7 +449,7 @@ interface ServerStatusParams {
|
|||
health: "ok" | "warning" | "error",
|
||||
/// Is there any pending background work which might change the status?
|
||||
/// For example, are dependencies being downloaded?
|
||||
quiescent: bool,
|
||||
quiescent: boolean,
|
||||
/// Explanatory message to show on hover.
|
||||
message?: string,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue