Skip to content

Commit 795fdab

Browse files
committed
Fixing bad XML comments (3)
1 parent 14b007b commit 795fdab

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/CommandLine/Text/HelpText.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public int MaximumDisplayWidth
148148

149149
/// <summary>
150150
/// Gets or sets a value indicating whether the format of options should contain dashes.
151-
/// It modifies behavior of <see cref="AddOptions{T}(T)"/> method.
151+
/// It modifies behavior of <see cref="AddOptions{T}(ParserResult{T})"/> method.
152152
/// </summary>
153153
public bool AddDashesToOption
154154
{

src/CommandLine/UnParserExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public static class UnParserExtensions
7575
/// <summary>
7676
/// Format a command line argument string from a parsed instance.
7777
/// </summary>
78-
/// <typeparam name="T">Type of <see cref="options"/>.</typeparam>
78+
/// <typeparam name="T">Type of <paramref name="options"/>.</typeparam>
7979
/// <param name="parser">Parser instance.</param>
8080
/// <param name="options">A parsed (or manually correctly constructed instance).</param>
8181
/// <returns>A string with command line arguments.</returns>
@@ -87,7 +87,7 @@ public static string FormatCommandLine<T>(this Parser parser, T options)
8787
/// <summary>
8888
/// Format a command line argument string from a parsed instance.
8989
/// </summary>
90-
/// <typeparam name="T">Type of <see cref="options"/>.</typeparam>
90+
/// <typeparam name="T">Type of <paramref name="options"/>.</typeparam>
9191
/// <param name="parser">Parser instance.</param>
9292
/// <param name="options">A parsed (or manually correctly constructed instance).</param>
9393
/// <param name="configuration">The <see cref="Action{UnParserSettings}"/> lambda used to configure

0 commit comments

Comments
 (0)