Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed typo #1508

Merged
merged 1 commit into from Jul 28, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/articles/configs/configoptions.md
Expand Up @@ -13,7 +13,7 @@ Available config options are:
* `ConfigOptions.JoinSummary` - All benchmarks results should be joined into a single summary (by default we have a summary per type).
* `ConfigOptions.StopOnFirstError` - Benchmarking should be stopped after the first error (by default it's not).
* `ConfigOptions.DisableOptimizationsValidator` - Mandatory optimizations validator should be entirely turned off.
* `ConfigOptions.DontOverwriteResults` - The exported result files should not be overwritten (be default they are overwritten).
* `ConfigOptions.DontOverwriteResults` - The exported result files should not be overwritten (by default they are overwritten).
* `ConfigOptions.DisableLogFile` - Disables the log file written on disk.

All of these options could be combined and are available as CLI (Comand Line Interface) option (except `DisableOptimizationsValidator`), see [Console Arguments](xref:docs.console-args) for further information how to use the CLI.
Expand Down Expand Up @@ -55,4 +55,4 @@ public class Config : ManualConfig
// or
.With(ConfigOptions.JoinSummary | ConfigOptions.DisableLogFile));
}
```
```