Skip to content

Commit

Permalink
Add single quote when use pattern with filters (#2206)
Browse files Browse the repository at this point in the history
* Add single quote when use pattern with filters

* use the correct single quote
  • Loading branch information
erlangxk authored and AndreyAkinshin committed Jan 5, 2023
1 parent 5e8a318 commit ea0eb2f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/articles/guides/console-args.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ The `--filter` or just `-f` allows you to filter the benchmarks by their full na

Examples:

1. Run all benchmarks from System.Memory namespace: `-f System.Memory*`
2. Run all benchmarks: `-f *`
3. Run all benchmarks from ClassA and ClassB `-f *ClassA* *ClassB*`
1. Run all benchmarks from System.Memory namespace: `-f 'System.Memory*'`
2. Run all benchmarks: `-f '*'`
3. Run all benchmarks from ClassA and ClassB `-f '*ClassA*' '*ClassB*'`

**Note**: If you would like to **join** all the results into a **single summary**, you need to put `--join`. For example: `-f *ClassA* *ClassB* --join`
**Note**: If you would like to **join** all the results into a **single summary**, you need to put `--join`. For example: `-f '*ClassA*' '*ClassB*' --join`

## List of benchmarks

Expand Down

0 comments on commit ea0eb2f

Please # to comment.