From 0dde206bf4eb997399c04b97e19187b956160c4a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E2=80=9CKatrinBistreck=E2=80=9D?=
 <“katrin.bistreck@tuhh.de”>
Date: Tue, 19 Nov 2024 15:24:48 +0100
Subject: [PATCH] correct python build instructions

---
 docs/developer/build/python.md | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/docs/developer/build/python.md b/docs/developer/build/python.md
index 5df9d91..6bacd1a 100644
--- a/docs/developer/build/python.md
+++ b/docs/developer/build/python.md
@@ -52,14 +52,14 @@ Now this is the difference to the Cpp tools. The python tools use some of the Cp
 
 === "Windows"
 
-    ```sh
-    cmake --build --preset x64-windows-release -t install_python_package
+    ``` { .sh .copy }
+    cmake --build --preset x64-windows-release -t install_python_packages
     ```
 
 === "MinGW"
 
-    ```sh
-    cmake --build --preset x64-mingw-release -t install_python_package
+    ``` { .sh .copy }
+    cmake --build --preset x64-mingw-release -t install_python_packages
     ```
 
     !!! tip
@@ -67,8 +67,8 @@ Now this is the difference to the Cpp tools. The python tools use some of the Cp
 
 === "Unix"
 
-    ```sh
-    cmake --build --preset x64-linux-release -t install_python_package
+    ``` { .sh .copy }
+    cmake --build --preset x64-linux-release -t install_python_packages
     ```
 
     !!! tip
@@ -81,13 +81,13 @@ Same as for Cpp:
 
 === "Windows"
 
-    ```sh
+    ``` { .sh .copy }
     cmake --build --preset x64-windows-release --target <target>
     ```
 
 === "MinGW"
 
-    ```sh
+    ``` { .sh .copy }
     cmake --build --preset x64-mingw-release --target <target>
     ```
 
@@ -96,7 +96,7 @@ Same as for Cpp:
 
 === "Unix"
 
-    ```sh
+    ``` { .sh .copy }
     cmake --build --preset x64-linux-release --target <target>
     ```
 
-- 
GitLab