Merge pull request #318 from joseftw/patch-1

Fixes parentheses error
This commit is contained in:
Adam Sitnik 2016-12-04 14:07:30 +01:00 коммит произвёл GitHub
Родитель 37b126a4f0 e7c398fdd7
Коммит 2655b3b235
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -95,8 +95,8 @@ public class MyBenchmarks
.With(Runtime.Core)
.WithLaunchCount(5)
.WithIterationTime(TimeInterval.Millisecond * 200)
.WithMaxStdErrRelative(0.01))
.WithId("MySuperJob"); // IMPORTANT: Id assignment should be the last call in the chain or the id will be lost.
.WithMaxStdErrRelative(0.01)
.WithId("MySuperJob")); // IMPORTANT: Id assignment should be the last call in the chain or the id will be lost.
}
}
// Benchmarks
@ -155,4 +155,4 @@ public class MySuperJobAttribute : Attribute, IConfigSource
[MySuperJob]
public class MyBenchmarks
```
```