Skip to content

Commit

Permalink
add missing semicolon (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikHerold authored and davidfowl committed Nov 20, 2018
1 parent 7e773b7 commit a992551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AsyncGuidance.md
Expand Up @@ -35,7 +35,7 @@ Once you go async, all of your callers **SHOULD** be async, since efforts to be
```C#
public int DoSomethingAsync()
{
var result = CallDependencyAsync().Result
var result = CallDependencyAsync().Result;
return result + 1;
}
```
Expand Down

0 comments on commit a992551

Please sign in to comment.