docs: fix typo in process column config (#1323)

Lowercase a word.
This commit is contained in:
Clement Tsang 2023-11-19 06:49:37 -05:00 committed by GitHub
parent 5a17212f89
commit 5df66006d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"]
```