summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-11-19 06:49:37 -0500
committerGitHub <noreply@github.com>2023-11-19 06:49:37 -0500
commit5df66006d8df0ff03d839b15ac9ba328d58d3252 (patch)
tree1daf11dc73c06e5903a8d2178995fb4939aea00d
parent5a17212f89b9f4fe6589b9c59137fd4d49903104 (diff)
docs: fix typo in process column config (#1323)
Lowercase a word.
-rw-r--r--docs/content/configuration/config-file/processes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/configuration/config-file/processes.md b/docs/content/configuration/config-file/processes.md
index 047ae376..2871e1cd 100644
--- a/docs/content/configuration/config-file/processes.md
+++ b/docs/content/configuration/config-file/processes.md
@@ -7,5 +7,5 @@ You can configure which columns are shown by the process widget by setting the `
```toml
[processes]
# Pick which columns you want to use in any order.
-columns = ["cpu%", "mem%", "pid", "name", "read", "write", "Tread", "twrite", "state", "user", "time"]
+columns = ["cpu%", "mem%", "pid", "name", "read", "write", "tread", "twrite", "state", "user", "time"]
```