File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
src/PowerShellEditorServices/Debugging Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,6 @@ public async Task<BreakpointDetails[]> SetLineBreakpoints(
130130 /// <summary>
131131 /// Sets the list of line breakpoints for the current debugging session.
132132 /// </summary>
133- /// <param name="scriptFile">The ScriptFile in which breakpoints will be set.</param>
134133 /// <param name="breakpoints">BreakpointDetails for each breakpoint that will be set.</param>
135134 /// <param name="clearExisting">If true, causes all existing breakpoints to be cleared before setting new ones.</param>
136135 /// <returns>An awaitable Task that will provide details about the breakpoints that were set.</returns>
Original file line number Diff line number Diff line change @@ -28,10 +28,8 @@ private FunctionBreakpointDetails()
2828 /// Creates an instance of the BreakpointDetails class from the individual
2929 /// pieces of breakpoint information provided by the client.
3030 /// </summary>
31- /// <param name="name"></param>
32- /// <param name="line"></param>
33- /// <param name="column"></param>
34- /// <param name="condition"></param>
31+ /// <param name="name">The name of the function or command to break on.</param>
32+ /// <param name="condition">Condition string that would be applied to the breakpoint Action parameter.</param>
3533 /// <returns></returns>
3634 public static FunctionBreakpointDetails Create (
3735 string name ,
You can’t perform that action at this time.
0 commit comments