File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ <h1 class="text-center"><i class="fa fa-cogs" aria-hidden="true"></i></h1>
8686 < h1 class ="text-center "> < i class ="fas fa-book " aria-hidden ="true "> </ i > </ h1 >
8787 < a href ='{{ "/specification" | prepend: site.baseurl }} '> < h3 class ="text-center "> Specification</ h3 > </ a >
8888 < p >
89- The latest version of the protocol specification is version 1.64 .0.
89+ The latest version of the protocol specification is version 1.70 .0.
9090 </ p >
9191 < p >
9292 < a href ='{{ "/changelog" | prepend: site.baseurl }} '> Change History</ a >
Original file line number Diff line number Diff line change @@ -313,8 +313,9 @@ interface ContinuedEvent extends Event {
313313 threadId: number ;
314314
315315 /**
316- * If `allThreadsContinued` is true, a debug adapter can announce that all
317- * threads have continued.
316+ * If omitted or set to `true`, this event signals to the client that all
317+ * threads have been resumed. The value `false` indicates that not all
318+ * threads were resumed.
318319 */
319320 allThreadsContinued? : boolean ;
320321 };
@@ -1811,9 +1812,9 @@ Response to `continue` request.
18111812interface ContinueResponse extends Response {
18121813 body: {
18131814 /**
1814- * The value true ( or a missing property) signals to the client that all
1815- * threads have been resumed. The value false indicates that not all threads
1816- * were resumed.
1815+ * If omitted or set to `true`, this response signals to the client that all
1816+ * threads have been resumed. The value ` false` indicates that not all
1817+ * threads were resumed.
18171818 */
18181819 allThreadsContinued? : boolean ;
18191820 };
@@ -2224,7 +2225,7 @@ interface StackTraceArguments {
22242225 /**
22252226 * Specifies details on how to format the returned `StackFrame.name`. The
22262227 * debug adapter may format requested details in any way that would make sense
2227- * to the developer.
2228+ * to a developer.
22282229 * The attribute is only honored by a debug adapter if the corresponding
22292230 * capability `supportsValueFormattingOptions` is true.
22302231 */
You can’t perform that action at this time.
0 commit comments