From c7b436056a718d7a09696465b8eb8083d506e459 Mon Sep 17 00:00:00 2001 From: Filipe Paniguel Date: Tue, 27 Jan 2026 13:25:54 -0300 Subject: [PATCH] docs: fix typo in total read column docs (#1967) --- docs/content/usage/widgets/process.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/usage/widgets/process.md b/docs/content/usage/widgets/process.md index 6f7ae1aa..27524d3b 100644 --- a/docs/content/usage/widgets/process.md +++ b/docs/content/usage/widgets/process.md @@ -163,7 +163,7 @@ Note all keywords are case-insensitive. To search for a process/command that col | `mem`
`mem%` | `mem < 0.5` | Matches the memory column in terms of percent; supports comparison operators | | `read`
`r/s`
`rps` | `read = 1 mb` | Matches the read/s column in terms of bytes; supports comparison operators | | `write`
`w/s`
`wps` | `write >= 1 kb` | Matches the write/s column in terms of bytes; supports comparison operators | -| `tread`
`t.read` | `tread <= 1024 gb` | Matches he total read column in terms of bytes; supports comparison operators | +| `tread`
`t.read` | `tread <= 1024 gb` | Matches the total read column in terms of bytes; supports comparison operators | | `twrite`
`t.write` | `twrite > 1024 tb` | Matches the total write column in terms of bytes; supports comparison operators | | `user` | `user=root` | Matches by user; supports regex | | `state` | `state=running` | Matches by state; supports regex |