diff --git a/Command-line.md b/Command-line.md index 57a5d9b..d601b54 100644 --- a/Command-line.md +++ b/Command-line.md @@ -5,16 +5,16 @@ Note that options are described according to the following pattern: *<description>* - `-h, -?, --help`
- `-n, --nothrow`
- `-t, --test`
- `-r, --reporter`
- `-b, --break`
- `-s, --success`
- `-a, --abort`
- `-l, --list`
- `-o, --out`
- `-n, --name`
+ ` -h, -?, --help`
+ ` -n, --nothrow`
+ ` -t, --test`
+ ` -r, --reporter`
+ ` -b, --break`
+ ` -s, --success`
+ ` -a, --abort`
+ ` -l, --list`
+ ` -o, --out`
+ ` -n, --name`
## Usage @@ -53,7 +53,7 @@ Examples: -t "this test only" Matches the test case called, 'this test only' -t these/* Matches all cases starting with 'these/' -t exclude:notThis Matches all tests except, 'notThis' - -t ~:notThis Matches all tests except, 'notThis' + -t ~notThis Matches all tests except, 'notThis' -t ~*private* Matches all tests except those that contain 'private' -t a/* ~a/b/* a/b/c Matches all tests that start with 'a/', except those that start with 'a/b/', except 'a/b/c', which is included