diff --git a/docs/guides/creating-a-reproduction.md b/docs/guides/creating-a-reproduction.md index 19a342b3eee..7aa43d7bda8 100644 --- a/docs/guides/creating-a-reproduction.md +++ b/docs/guides/creating-a-reproduction.md @@ -22,23 +22,27 @@ just delete and recreate the environment. It's trivial to set up: - Activate the environment with: - === ":fontawesome-brands-windows: Windows" + === ":material-apple: macOS" ``` sh - . venv/Scripts/activate # (1)! + . venv/bin/activate ``` - 1. Your terminal should now print `(venv)` before the prompt, which is - how you know that you are inside an environment. + === ":fontawesome-brands-windows: Windows" + + ``` sh + . venv/Scripts/activate + ``` - === ":material-linux: Linux, :material-apple: macOS" + === ":material-linux: Linux" ``` sh - . venv/bin/activate # (1)! + . venv/bin/activate ``` - 1. Your terminal should now print `(venv)` before the prompt, which is - how you know that you are inside an environment. + + Your terminal should now print `(venv)` before the prompt, which is how you + know that you are inside the virtual environment that you just created. - Exit the environment with: