1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:17:34 +00:00

Base: man pages: document arguments, fix typos, use American English

This commit is contained in:
Brendan Coles 2021-03-27 03:05:18 +00:00 committed by Andreas Kling
parent 5bd8a416ea
commit 5331ae0e93
8 changed files with 23 additions and 11 deletions

View file

@ -4,10 +4,10 @@ Shell Variables - Special local and environment variables used by the Shell
## Description
The Shell uses various variables to allow for customisations of certain behavioural or visual things.
The Shell uses various variables to allow for customisations of certain behavioral or visual things.
Such variables can be changed or set by the user to tweak how the shell presents things.
## Behavioural
## Behavioral
1. Output interpretations
@ -23,7 +23,7 @@ The value of this variable is used to determine which entries are kept in the Sh
- `ignorespace`: Entries starting with one or more space characters are ignored
- `ignoredups`: Consecutive duplicate entries are ignored
- `ignoreboth`: The behaviour of `ignorespace` and `ignoredups` is combined
- `ignoreboth`: The behavior of `ignorespace` and `ignoredups` is combined
- If the variable is unset (this is the default) or has any other value than the above, no entries will be excluded from history.
Note: This variable is respected by every program using `Line::Editor`, e.g. [`js`(1)](../man1/js.md).