summaryrefslogtreecommitdiff
path: root/Base
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2023-05-06 16:28:34 +0200
committerJelle Raaijmakers <jelle@gmta.nl>2023-05-07 01:05:09 +0200
commitee47c0275e2ce130c4b8883cc71a84e6bdbf2403 (patch)
tree963a1236fac27609264e81f7e6bbae87c4303d89 /Base
parenta7600caea1c22decb5024be2dd329c925f7ef627 (diff)
downloadserenity-ee47c0275e2ce130c4b8883cc71a84e6bdbf2403.zip
Everywhere: Run spellcheck on all documentation
Diffstat (limited to 'Base')
-rw-r--r--Base/usr/share/man/man5/GML/Widget/Toolbar.md4
-rw-r--r--Base/usr/share/man/man5/postcreate.md2
-rw-r--r--Base/usr/share/man/man6/Minesweeper.md2
-rw-r--r--Base/usr/share/man/man7/Mitigations.md2
4 files changed, 5 insertions, 5 deletions
diff --git a/Base/usr/share/man/man5/GML/Widget/Toolbar.md b/Base/usr/share/man/man5/GML/Widget/Toolbar.md
index 8a6a63db98..0490271c6d 100644
--- a/Base/usr/share/man/man5/GML/Widget/Toolbar.md
+++ b/Base/usr/share/man/man5/GML/Widget/Toolbar.md
@@ -8,7 +8,7 @@ Defines a GUI toolbar widget.
When `collapsible` is set to `true`, the toolbar can be resized below the size of its items.
Any items that do not fit the current size, will be placed in an overflow menu.
-To keep groups (i.e. Buttons/items separated by Separators) together, and move them to the overflow menu as one, set the `gouped` property.
+To keep groups (i.e. Buttons/items separated by Separators) together, and move them to the overflow menu as one, set the `grouped` property.
## Synopsis
@@ -29,4 +29,4 @@ To keep groups (i.e. Buttons/items separated by Separators) together, and move t
| Property | Type | Possible values | Description |
|-------------|------|-----------------|---------------------------------------------------------------------------------------|
| collapsible | bool | true or false | If items that do not fit should be placed in an overflow menu |
-| grouped | bool | true or false | If items should be moved to the overflow menu in groups, separated by Separator items | \ No newline at end of file
+| grouped | bool | true or false | If items should be moved to the overflow menu in groups, separated by Separator items |
diff --git a/Base/usr/share/man/man5/postcreate.md b/Base/usr/share/man/man5/postcreate.md
index d7be930ed8..a688adef75 100644
--- a/Base/usr/share/man/man5/postcreate.md
+++ b/Base/usr/share/man/man5/postcreate.md
@@ -8,7 +8,7 @@ postcreate - HackStudio postcreate scripts
## Description
-It is possible to define project templates that set up HackStudio projects. These templates can contain custom setup logic in the form of a `*.postcreate` script in the template directory. The script name must match the template's (directory) name. Postcreate scripts are regular shell scripts. They are executed from an undeterminate directory with the following arguments:
+It is possible to define project templates that set up HackStudio projects. These templates can contain custom setup logic in the form of a `*.postcreate` script in the template directory. The script name must match the template's (directory) name. Postcreate scripts are regular shell scripts. They are executed from an indeterminate directory with the following arguments:
- The path to the postcreate script
- The name of the new project
diff --git a/Base/usr/share/man/man6/Minesweeper.md b/Base/usr/share/man/man6/Minesweeper.md
index 8e83881014..4f97bab183 100644
--- a/Base/usr/share/man/man6/Minesweeper.md
+++ b/Base/usr/share/man/man6/Minesweeper.md
@@ -14,6 +14,6 @@ $ Minesweeper
The goal is to find all the mines without detonating them.
-The player reveals what is underneath a tile by clicking on it. If it is a mine underneath the player loses. Otherwise the tile will show how many neighbouring mines there are to the tile. If there are no neighboring mines, all the neighboring tiles are revealed recursively.
+The player reveals what is underneath a tile by clicking on it. If it is a mine underneath the player loses. Otherwise the tile will show how many neighboring mines there are to the tile. If there are no neighboring mines, all the neighboring tiles are revealed recursively.
The player can mark a tile as being a mine by right-clicking the tile. This is then shown with a flag.
diff --git a/Base/usr/share/man/man7/Mitigations.md b/Base/usr/share/man/man7/Mitigations.md
index ad8cdd9336..4f890e56f8 100644
--- a/Base/usr/share/man/man7/Mitigations.md
+++ b/Base/usr/share/man/man7/Mitigations.md
@@ -341,7 +341,7 @@ Build + LibC: Enable -fstack-protector-strong in user space
The kernel applies a exploit mitigation technique where vulnerable data
related to the state of a process is separated out into it's own region
-in memory which is always remmaped as read-only after it's initialized
+in memory which is always remapped as read-only after it's initialized
or updated. This means that an attacker needs more than an arbitrary
kernel write primitive to be able to elevate a process to root for example.