Skip to content

Commit 4d017c9

Browse files
committed
Fix RST syntax errors: add :: to code-block and fix path separators
1 parent a482601 commit 4d017c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

airflow-core/docs/start.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ This quick start guide will help you bootstrap an Airflow standalone instance on
6868
`Creating and Maintaining Local virtual environment with uv <https://github.com/apache/airflow/blob/main/contributing-docs/07_local_virtualenv.rst#creating-and-maintaining-local-virtualenv-with-uv-recommended>`_
6969

7070
For installation using ``pip`` and ``venv``, carry out following steps:
71-
.. code-block bash
71+
.. code-block:: bash
7272
7373
# For Windows after WSL2 install, restart computer, then in WSL Ubuntu terminal
7474
sudo apt update
@@ -78,14 +78,14 @@ For installation using ``pip`` and ``venv``, carry out following steps:
7878
cd ~
7979
8080
# Create airflow directory
81-
mkdir -p ~airflow
81+
mkdir -p ~/airflow
8282
cd ~airflow
8383
8484
# Create virtual environment
8585
python3 -m venv airflow_venv
8686
8787
# Activate
88-
source airflow_venvbinactivate
88+
source airflow_venv/bin/activate
8989
9090
# Upgrade pip
9191
pip install --upgrade pip

0 commit comments

Comments
 (0)