Skip to content

Commit

Permalink
Typo fix (#7085)
Browse files Browse the repository at this point in the history
  • Loading branch information
hassan-me committed Feb 7, 2024
1 parent 944875f commit 5249940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/articles/actors/receive-actor-api.md
Expand Up @@ -528,7 +528,7 @@ Receive<string>(s => Console.WriteLine("Received string: " + s); //This will ca

```csharp
ReceiveAny(o => Console.WriteLine("Received object: " + o);
Receive<object>(0 => Console.WriteLine("Received object: " + o);
Receive<object>(o => Console.WriteLine("Received object: " + o);
```

## Reply to Messages
Expand Down

0 comments on commit 5249940

Please sign in to comment.