Skip to content

Commit 1f8f22d

Browse files
author
LoneWandererProductions
committed
fix comment
1 parent 8fda24a commit 1f8f22d

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

ViewModel/DelegateCommand.cs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,12 @@ public sealed class DelegateCommand<T> : ICommand
3333
private readonly Action<T?> _execute;
3434

3535
/// <summary>
36-
/// Initializes a new instance of the <see cref="DelegateCommand{T}" /> class.
36+
/// Initializes a new instance of the <see cref="DelegateCommand{T}" /> class.
3737
/// </summary>
38-
/// <param name="action">The action to execute.</param>
39-
/// <param name="canExecute">
40-
/// A predicate to determine if the command can execute. If null, the command is always
41-
/// executable.
42-
/// </param>
38+
/// <param name="execute">The execute.</param>
39+
/// <param name="canExecute">A predicate to determine if the command can execute. If null, the command is always
40+
/// executable.</param>
41+
/// <exception cref="System.ArgumentNullException">execute</exception>
4342
/// <exception cref="ArgumentNullException">Thrown when the action is null.</exception>
4443
public DelegateCommand(Action<T?> execute, Predicate<T?>? canExecute = null)
4544
{

0 commit comments

Comments
 (0)