File tree 2 files changed +2
-5
lines changed
src/PowerShellEditorServices/Debugging
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(
130
130
/// <summary>
131
131
/// Sets the list of line breakpoints for the current debugging session.
132
132
/// </summary>
133
- /// <param name="scriptFile">The ScriptFile in which breakpoints will be set.</param>
134
133
/// <param name="breakpoints">BreakpointDetails for each breakpoint that will be set.</param>
135
134
/// <param name="clearExisting">If true, causes all existing breakpoints to be cleared before setting new ones.</param>
136
135
/// <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()
28
28
/// Creates an instance of the BreakpointDetails class from the individual
29
29
/// pieces of breakpoint information provided by the client.
30
30
/// </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>
35
33
/// <returns></returns>
36
34
public static FunctionBreakpointDetails Create (
37
35
string name ,
You can’t perform that action at this time.
0 commit comments