From 89a826612a5d3e819a51647fe71971b082db8a04 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Tue, 16 Apr 2024 15:22:10 +0200 Subject: [PATCH] Fix documentation in README code example --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 945e44e2b..c42292812 100644 --- a/README.md +++ b/README.md @@ -42,9 +42,8 @@ use sysinfo::{ Components, Disks, Networks, System, }; -// Please note that we use "new_all" to ensure that all list of -// components, network interfaces, disks and users are already -// filled! +// Please note that we use "new_all" to ensure that all lists of +// CPUs and processes are filled! let mut sys = System::new_all(); // First we update all information of our `System` struct.