Skip to content

Commit 6bef853

Browse files
authored
Fixed a leftover API rename
1 parent 224f864 commit 6bef853

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/mvvm/RelayCommand.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public class MyViewModel : ObservableObject
3636
public int Counter
3737
{
3838
get => counter;
39-
private set => Set(ref counter, value);
39+
private set => SetProperty(ref counter, value);
4040
}
4141

4242
public ICommand IncrementCounterCommand { get; }

0 commit comments

Comments
 (0)