Skip to content

Commit d435c15

Browse files
Fixed XML doc comment issue
1 parent 7d6c72a commit d435c15

File tree

1 file changed

+2
-2
lines changed
  • src/Community.VisualStudio.Toolkit.Shared/Commands

1 file changed

+2
-2
lines changed

src/Community.VisualStudio.Toolkit.Shared/Commands/Commands.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public async Task<bool> ExecuteAsync(Guid menuGroup, uint commandId, string argu
5151
}
5252

5353
/// <summary>
54-
/// Executes a command by guid and ID
54+
/// Executes a command from the <see cref="VSConstants.VSStd97CmdID"/> collection of built in commands.
5555
/// </summary>
5656
/// <returns>Returns <see langword="true"/> if the command was succesfully executed; otherwise <see langword="false"/>.</returns>
5757
public Task<bool> ExecuteAsync(VSConstants.VSStd97CmdID command, string argument = "")
@@ -60,7 +60,7 @@ public Task<bool> ExecuteAsync(VSConstants.VSStd97CmdID command, string argument
6060
}
6161

6262
/// <summary>
63-
/// Executes a command by guid and ID
63+
/// Executes a command from the <see cref="VSConstants.VSStd2KCmdID"/> collection of built in commands.
6464
/// </summary>
6565
/// <returns>Returns <see langword="true"/> if the command was succesfully executed; otherwise <see langword="false"/>.</returns>
6666
public Task<bool> ExecuteAsync(VSConstants.VSStd2KCmdID command, string argument = "")

0 commit comments

Comments
 (0)