Skip to content

Commit

Permalink
Add missing parens to Once docs
Browse files Browse the repository at this point in the history
  • Loading branch information
blairconrad committed Jul 28, 2016
1 parent a3ffe22 commit f0c3552
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/limited-call-specifications.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ and then function properly thereafter:
A.CallTo(() => fakeService.DoSomething()).Returns("SUCCESS");

// set up a one-time exception which will be used for the first call
A.CallTo(() => fakeService.DoSomething()).Throws<Exception>().Once;
A.CallTo(() => fakeService.DoSomething()).Throws<Exception>().Once();
```

0 comments on commit f0c3552

Please sign in to comment.