From ea0eb2fe403cab9c1daa0e5aa6e42ab038100418 Mon Sep 17 00:00:00 2001 From: erlangxk <4946085+erlangxk@users.noreply.github.com> Date: Tue, 29 Nov 2022 22:03:26 +0800 Subject: [PATCH] Add single quote when use pattern with filters (#2206) * Add single quote when use pattern with filters * use the correct single quote --- docs/articles/guides/console-args.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/articles/guides/console-args.md b/docs/articles/guides/console-args.md index 6540ebab6a..951a789fa9 100644 --- a/docs/articles/guides/console-args.md +++ b/docs/articles/guides/console-args.md @@ -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