Fix misra parameter typo (#3166)

This commit is contained in:
JuPrgn 2021-03-08 16:01:55 +01:00 committed by GitHub
parent 170c8257b2
commit 0f2855af0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -25,10 +25,10 @@ It is also possible to call scripts as follows:
```bash
cppcheck --dump --quiet src/test.c
python cert.py src/test.c.dump
python misra.py --rules-texts=~/misra_rules.txt src/test.c.dump
python misra.py --rule-texts=~/misra_rules.txt src/test.c.dump
```
This allows you to add additional parameters when calling the script (for example, `--rule-tests` for `misra.py`). The full list of available parameters can be found by calling any script with the `--help` flag.
This allows you to add additional parameters when calling the script (for example, `--rule-texts` for `misra.py`). The full list of available parameters can be found by calling any script with the `--help` flag.
### GUI