summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-05-17 17:48:55 +0100
committerLinus Groh <mail@linusgroh.de>2021-05-17 17:48:55 +0100
commit0aab7743436424170d3d3d421e85e7f066d351e9 (patch)
treefc6bbe146b92a0194978d5cb25095a6018dd660a /Documentation
parentbebbeda7262d9139ac249387672e567fe3d3791f (diff)
downloadserenity-0aab7743436424170d3d3d421e85e7f066d351e9.zip
Everywhere: Fix a bunch of typos
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/CLionConfiguration.md2
-rw-r--r--Documentation/RunningTests.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/CLionConfiguration.md b/Documentation/CLionConfiguration.md
index 60c76039c0..a9c049712a 100644
--- a/Documentation/CLionConfiguration.md
+++ b/Documentation/CLionConfiguration.md
@@ -12,7 +12,7 @@ and set the following fields: (Assuming you use `Ninja` as the build system and
## Excluding Build Artifacts
Source files are copied to the `Build` directory during the build, if you do not exclude them from CLion indexing they will show up
-in search results. This is often confusing, unintuitive, and can result in your loosing changes you have made to files. To exclude
+in search results. This is often confusing, unintuitive, and can result in you losing changes you have made to files. To exclude
these files navigate to the `Project` tool window, right-click the `Build` folder and select `Mark Directory as | Excluded`. If you
want exclude Toolchain files as well, follow the same procedure with the following paths:
- `Toolchain/Local`
diff --git a/Documentation/RunningTests.md b/Documentation/RunningTests.md
index d922d6dfe4..d282f43365 100644
--- a/Documentation/RunningTests.md
+++ b/Documentation/RunningTests.md
@@ -34,7 +34,7 @@ export SERENITY_SOURCE_DIR=${PWD}/..
ninja && ninja test
```
-To see the stdout/stderr output of failing tests, the reccommended way is to set the environment variable [`CTEST_OUTPUT_ON_FAILURE`](https://cmake.org/cmake/help/latest/manual/ctest.1.html#options) to 1.
+To see the stdout/stderr output of failing tests, the recommended way is to set the environment variable [`CTEST_OUTPUT_ON_FAILURE`](https://cmake.org/cmake/help/latest/manual/ctest.1.html#options) to 1.
```sh
CTEST_OUTPUT_ON_FAILURE=1 ninja test