summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkellurs <kellurs@users.noreply.github.com>2020-10-15 10:40:59 -0600
committerGitHub <noreply@github.com>2020-10-15 18:40:59 +0200
commit21339fd40cf4fad71c39552e3813286f3068ae27 (patch)
treec53dcd70be4978157a7c50efd059ba626b16e1e2
parentd08f44b5448ce7c86bd044af9be289e0208d5e3e (diff)
downloadpsutil-21339fd40cf4fad71c39552e3813286f3068ae27.tar.gz
Fix labeling in Process cpu_times() documentation (#1853)
Changed system_user to children_system to match the named tupple and expected behaviour. Change description to match.
-rw-r--r--docs/index.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/index.rst b/docs/index.rst
index 97d6b420..3c9a4b65 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -1426,7 +1426,7 @@ Process class
- **system**: time spent in kernel mode.
- **children_user**: user time of all child processes (always ``0`` on
Windows and macOS).
- - **system_user**: user time of all child processes (always ``0`` on
+ - **children_system**: system time of all child processes (always ``0`` on
Windows and macOS).
- **iowait**: (Linux) time spent waiting for blocking I/O to complete.
This value is excluded from `user` and `system` times count (because the