Skip to content

Commit 97e2053

Browse files
committed
Had a few bad XML doc comments. Forgot to build Release before my checkin. Doh!
1 parent f61b67f commit 97e2053

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

src/PowerShellEditorServices/Debugging/DebugService.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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>

src/PowerShellEditorServices/Debugging/FunctionBreakpointDetails.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)