Skip to content

Commit

Permalink
Bug #599 - Fix signature of the Timing() method (#600)
Browse files Browse the repository at this point in the history
Update documentation to reflect the correct signature of the Timing() method.
  • Loading branch information
mtn-boblloyd authored Jan 8, 2024
1 parent 3623a67 commit 615728e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ var success = DoSomething();
stopWatch.Stop();

var statName = "DoSomething." + success ? "Success" : "Failure";
stats.Timing(statName, stopWatch.Elapsed);
stats.Timing(stopWatch.Elapsed, statName);
```

### Simple timers
Expand Down

0 comments on commit 615728e

Please sign in to comment.