Skip to content

Commit

Permalink
Missing semicolon in code exampl
Browse files Browse the repository at this point in the history
Code example in circuit-breaker.md Line 212 missing semicolon
  • Loading branch information
JohnLampitt authored and bennage committed Mar 21, 2018
1 parent bba8442 commit 6850c89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/patterns/circuit-breaker.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ Additionally, it uses a lock to prevent the circuit breaker from trying to perfo
bool lockTaken = false;
try
{
Monitor.TryEnter(halfOpenSyncObject, ref lockTaken)
Monitor.TryEnter(halfOpenSyncObject, ref lockTaken);
if (lockTaken)
{
// Set the circuit breaker state to HalfOpen.
Expand Down

0 comments on commit 6850c89

Please sign in to comment.