Skip to content

Commit 511eac7

Browse files
committed
Documentation
1 parent eb901a6 commit 511eac7

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

docs/guides/creating-a-reproduction.md

+12-8
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,27 @@ just delete and recreate the environment. It's trivial to set up:
2222
2323
- Activate the environment with:
2424
25-
=== ":fontawesome-brands-windows: Windows"
25+
=== ":material-apple: macOS"
2626
2727
``` sh
28-
. venv/Scripts/activate # (1)!
28+
. venv/bin/activate
2929
```
3030
31-
1. Your terminal should now print `(venv)` before the prompt, which is
32-
how you know that you are inside an environment.
31+
=== ":fontawesome-brands-windows: Windows"
32+
33+
``` sh
34+
. venv/Scripts/activate
35+
```
3336
34-
=== ":material-linux: Linux, :material-apple: macOS"
37+
=== ":material-linux: Linux"
3538
3639
``` sh
37-
. venv/bin/activate # (1)!
40+
. venv/bin/activate
3841
```
3942
40-
1. Your terminal should now print `(venv)` before the prompt, which is
41-
how you know that you are inside an environment.
43+
44+
Your terminal should now print `(venv)` before the prompt, which is how you
45+
know that you are inside the virtual environment that you just created.
4246
4347
- Exit the environment with:
4448

0 commit comments

Comments
 (0)