@@ -48,7 +48,7 @@ public sealed class AsyncRelayCommand<T> : IAsyncRelayCommand<T>
48
48
public event EventHandler ? CanExecuteChanged ;
49
49
50
50
/// <summary>
51
- /// Initializes a new instance of the <see cref="AsyncRelayCommand{T}"/> class that can always execute .
51
+ /// Initializes a new instance of the <see cref="AsyncRelayCommand{T}"/> class.
52
52
/// </summary>
53
53
/// <param name="execute">The execution logic.</param>
54
54
/// <remarks>See notes in <see cref="RelayCommand{T}(Action{T})"/>.</remarks>
@@ -61,7 +61,7 @@ public AsyncRelayCommand(Func<T?, Task> execute)
61
61
}
62
62
63
63
/// <summary>
64
- /// Initializes a new instance of the <see cref="AsyncRelayCommand{T}"/> class that can always execute .
64
+ /// Initializes a new instance of the <see cref="AsyncRelayCommand{T}"/> class.
65
65
/// </summary>
66
66
/// <param name="execute">The execution logic.</param>
67
67
/// <param name="allowConcurrentExecutions">Whether or not to allow concurrent executions of the command.</param>
@@ -76,7 +76,7 @@ public AsyncRelayCommand(Func<T?, Task> execute, bool allowConcurrentExecutions)
76
76
}
77
77
78
78
/// <summary>
79
- /// Initializes a new instance of the <see cref="AsyncRelayCommand{T}"/> class that can always execute .
79
+ /// Initializes a new instance of the <see cref="AsyncRelayCommand{T}"/> class.
80
80
/// </summary>
81
81
/// <param name="cancelableExecute">The cancelable execution logic.</param>
82
82
/// <remarks>See notes in <see cref="RelayCommand{T}(Action{T})"/>.</remarks>
@@ -89,7 +89,7 @@ public AsyncRelayCommand(Func<T?, CancellationToken, Task> cancelableExecute)
89
89
}
90
90
91
91
/// <summary>
92
- /// Initializes a new instance of the <see cref="AsyncRelayCommand{T}"/> class that can always execute .
92
+ /// Initializes a new instance of the <see cref="AsyncRelayCommand{T}"/> class.
93
93
/// </summary>
94
94
/// <param name="cancelableExecute">The cancelable execution logic.</param>
95
95
/// <param name="allowConcurrentExecutions">Whether or not to allow concurrent executions of the command.</param>
0 commit comments