Skip to content

Commit c2b2273

Browse files
committed
Improved Comments
1 parent a48c073 commit c2b2273

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

EssentialMVVM/ObservableObjectBase.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public abstract class ObservableObjectBase : INotifyPropertyChanged
2222
public event PropertyChangedEventHandler PropertyChanged;
2323

2424
/// <summary>
25-
/// Raise Property Changed Event
25+
/// Trigger the Property Changed Event
2626
/// </summary>
2727
/// <param name="propertyName">Name of Property that has Changed</param>
2828
public void RaisePropertyChanged(string propertyName)

EssentialMVVM/ViewModelCommand.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class ViewModelCommand : ICommand
3131
/// Initializes a new instance of the <see cref="ViewModelCommand"/> class.
3232
/// </summary>
3333
/// <remarks>The command can always be executed</remarks>
34-
/// <param name="execute">The action for the Command to Execute</param>
34+
/// <param name="execute">The Action for the Command to Execute</param>
3535
public ViewModelCommand(Action execute)
3636
: this(execute, null)
3737
{
@@ -41,7 +41,7 @@ public ViewModelCommand(Action execute)
4141
/// <summary>
4242
/// Initializes a new instance of the <see cref="ViewModelCommand"/> class.
4343
/// </summary>
44-
/// <param name="command">The action for the Command to Execute</param>
44+
/// <param name="command">The Action for the Command to Execute</param>
4545
/// <param name="canExecute">A function that determines whether the Command can be Executed</param>
4646
public ViewModelCommand(Action command, Func<bool> canExecute)
4747
{

0 commit comments

Comments
 (0)