summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFrantisek Sumsal <frantisek@sumsal.cz>2023-04-20 21:54:59 +0200
committerFrantisek Sumsal <frantisek@sumsal.cz>2023-04-20 21:54:59 +0200
commit94d82b59807488343bd206ba8f111d24ff17d9c1 (patch)
tree7df4d9d1e1f45ad8d82bbcee498a4e415dd06761 /docs
parentff707dd1b1a6bd49e7f693564ec204f23ad23a7d (diff)
downloadsystemd-94d82b59807488343bd206ba8f111d24ff17d9c1.tar.gz
tree-wide: code spelling fixes
As reported by Fossies.
Diffstat (limited to 'docs')
-rw-r--r--docs/COREDUMP.md2
-rw-r--r--docs/MEMORY_PRESSURE.md6
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/COREDUMP.md b/docs/COREDUMP.md
index 7d17d3069e..c64579e2fd 100644
--- a/docs/COREDUMP.md
+++ b/docs/COREDUMP.md
@@ -70,7 +70,7 @@ management and sandboxing.
The `systemd-coredump` handler will extract a backtrace and [ELF packaging
metadata](https://systemd.io/ELF_PACKAGE_METADATA) from any coredumps it
-receieves and log both. The information about coredumps stored in the journal
+receives and log both. The information about coredumps stored in the journal
can be enumerated and queried with the
[`coredumpctl`](https://www.freedesktop.org/software/systemd/man/coredumpctl.html)
tool, for example for directly invoking a debugger such as `gdb` on a collected
diff --git a/docs/MEMORY_PRESSURE.md b/docs/MEMORY_PRESSURE.md
index 6a14d74f44..aed25cb49a 100644
--- a/docs/MEMORY_PRESSURE.md
+++ b/docs/MEMORY_PRESSURE.md
@@ -29,7 +29,7 @@ userspace process can detect mounting memory pressure early and release memory
back to the kernel as it happens, relieving the memory pressure before it
becomes too critical.
-The effects of memory pressure during runtime generaly are growing latencies
+The effects of memory pressure during runtime generally are growing latencies
during operation: when a program requires memory but the system is busy writing
out memory to (relatively slow) disks in order make some available, this
generally surfaces in scheduling latencies, and applications and services will
@@ -146,8 +146,8 @@ is specifically useful for services that consist of multiple processes, and
where each of them shall be able to release resources on memory pressure.
The `POLLPRI`/`POLLIN` conditions will be triggered every time memory pressure
-is detected, but not continously. It is thus safe to keep `poll()`-ing on the
-same file descriptor continously, and executing resource release operations
+is detected, but not continuously. It is thus safe to keep `poll()`-ing on the
+same file descriptor continuously, and executing resource release operations
whenever the file descriptor triggers without having to expect overloading the
process.