Skip to content

Commit 36ccd62

Browse files
schaubhReeceHumphreys
authored andcommitted
[#1341] remove dollar symbols from command line arguments
1 parent 27f9c36 commit 36ccd62

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ pip install pre-commit
7070
```
7171
Verify pre-commit is installed with:
7272
```
73-
$ pre-commit --version
73+
pre-commit --version
7474
pre-commit 3.6.2
7575
```
7676

@@ -79,7 +79,7 @@ If you are using python virtual environments, you may need to activate your envi
7979
Next, change your current directory to be the Basilisk repo folder. Then run ```pre-commit install --hook-type pre-commit --hook-type commit-msg``` to set up the git hook scripts.
8080
You must run this inside of the repo folder and the associated files will only be installed inside that repository.
8181
```
82-
$ pre-commit install --hook-type pre-commit --hook-type commit-msg
82+
pre-commit install --hook-type pre-commit --hook-type commit-msg
8383
pre-commit installed at .git/hooks/pre-commit
8484
pre-commit installed at .git/hooks/commit-msg
8585
```
@@ -95,7 +95,7 @@ installing and using `pre-commit`), you can
9595
manually run pre-commit on specific files you have edited. Use the
9696
command:
9797
```
98-
$ pre-commit run --files <file>
98+
pre-commit run --files <file>
9999
```
100100
Note that you must run this command inside the directory containing
101101
the file you are running `pre-commit` on.
@@ -122,7 +122,7 @@ For more information is available on the [clang-format](https://clang.llvm.org/d
122122
* You must ```pip install clang-format``` to use ClangFormat through the command line.
123123
* Use the command
124124
```
125-
$ clang-format -i {file name(s)} -style=file
125+
clang-format -i {file name(s)} -style=file
126126
```
127127
where:
128128
* ```-i``` makes the suggested changes to the file, otherwise they will be outputted to the cli

0 commit comments

Comments
 (0)