Skip to content

Commit ea0eb2f

Browse files
erlangxkAndreyAkinshin
authored andcommitted
Add single quote when use pattern with filters (#2206)
* Add single quote when use pattern with filters * use the correct single quote
1 parent 5e8a318 commit ea0eb2f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/articles/guides/console-args.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ The `--filter` or just `-f` allows you to filter the benchmarks by their full na
2323

2424
Examples:
2525

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

30-
**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`
30+
**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`
3131

3232
## List of benchmarks
3333

0 commit comments

Comments
 (0)