diff --git a/docs/developer/build-environment/linux.md b/docs/developer/build-environment/linux.md
index 645b8e6cfe1faf25bcf79d398c27d46726d94fe7..a19f37a5e0f8f263bd21d892727a73d523de99c7 100644
--- a/docs/developer/build-environment/linux.md
+++ b/docs/developer/build-environment/linux.md
@@ -27,7 +27,7 @@ If you distribution is not listed here, make sure you at least install:
 === "Arch"
 
     ```{.sh .copy}
-    sudo pacman -Syu
+    sudo pacman -Sy
     sudo pacman -S devtools
     ```
 
diff --git a/docs/developer/build-environment/windows.md b/docs/developer/build-environment/windows.md
index 657b28687a9f0f078074c8d774a9c31233357d91..31b37344a149bc4aa204a9830e10c253164bf87a 100644
--- a/docs/developer/build-environment/windows.md
+++ b/docs/developer/build-environment/windows.md
@@ -39,12 +39,12 @@ The page should like something like this:
     - *C++ Clang tools for Windows* (⇒ This will include the Clang compiler as well.)
 
 !!! attention
-    The latest Version of Visual Studio can change throughout time. Just download the latest one and keep a note which version that is.
+    The latest version of Visual Studio Build Tools can change throughout time. Just download the latest one and keep a note which version that is.
 
 ---
 
 ## Install CMake
-- Download and Install the latest Release of **CMake**: [Download CMake :octicons-link-external-16:](https://cmake.org/download/){:target="_blank"}
+- Download and Install the latest release of **CMake**: [Download CMake :octicons-link-external-16:](https://cmake.org/download/){:target="_blank"}
 
 !!! important 
     Install at least version **3.25**!
@@ -54,7 +54,7 @@ The page should like something like this:
 ---
 
 ## Install Git
-- Download and Install the latest Release of **Git**: [Download Git :octicons-link-external-16:](https://git-scm.com/download/win){:target="_blank"}
+- Download and Install the latest release of **Git**: [Download Git :octicons-link-external-16:](https://git-scm.com/download/win){:target="_blank"}
 - Enable the option to make **Git** available in *PATH*.
 - Leave the rest of the options to their defaults.
 
diff --git a/docs/developer/build/cpp.md b/docs/developer/build/cpp.md
index feee417cbcec702d1265500b321cc1354def5bc6..6e7b12ca203fe3bddcb09024c8bb0ba11ad9cfed 100644
--- a/docs/developer/build/cpp.md
+++ b/docs/developer/build/cpp.md
@@ -44,7 +44,7 @@ Since **CMake** is independent of the used platform, it needs to figure out on w
 
 !!! note
     **CMake** introduced the concept of [Presets :octicons-link-external-16:](https://cmake.org/cmake/help/latest/manual/cmake-presets.7.html){:target="_blank"} which allows to specify different sets of arguments which are passed to **CMake** when configuring the project.
-    We provide a basic preset file which contains a reasonable default configuration for each platform we support. You can however, create your own :octicons-file-16: `CMakeUserPresets.json` file along our preset file to override our settings. See [CMale Presets](../cmake-presets.md) for more information about that.
+    We provide a basic preset file which contains a reasonable default configuration for each platform we support. You can however, create your own :octicons-file-16: `CMakeUserPresets.json` file along our preset file to override our settings. See [CMake Presets](../cmake-presets.md) for more information about that.
 
 ### Terminal
 The programmers way to configure **CMake**: