From b06230166df4f6a6761933187d5223f937458c54 Mon Sep 17 00:00:00 2001 From: Sebastian Oberschwendtner <sebastian.oberschwendtner@tum.de> Date: Wed, 6 Mar 2024 14:48:30 +0100 Subject: [PATCH] Fixes typos. --- docs/developer/build-environment/linux.md | 2 +- docs/developer/build-environment/windows.md | 6 +++--- docs/developer/build/cpp.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/developer/build-environment/linux.md b/docs/developer/build-environment/linux.md index 645b8e6..a19f37a 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 657b286..31b3734 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 feee417..6e7b12c 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**: -- GitLab