Skip to content

Commit a8589f7

Browse files
committed
Fixed property type in example with generic DelegateCommand<object>.
1 parent aba1f8f commit a8589f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/commands/commanding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The Prism `DelegateCommand` class encapsulates two delegates that each reference
2424
```cs
2525
public class ArticleViewModel
2626
{
27-
public DelegateCommand SubmitCommand { get; private set; }
27+
public DelegateCommand<object> SubmitCommand { get; private set; }
2828

2929
public ArticleViewModel()
3030
{

0 commit comments

Comments
 (0)