diff --git a/procfs-core/src/devices.rs b/procfs-core/src/devices.rs index ba1ee29..36c4176 100644 --- a/procfs-core/src/devices.rs +++ b/procfs-core/src/devices.rs @@ -12,7 +12,7 @@ use serde::{Deserialize, Serialize}; pub struct Devices { /// Character devices pub char_devices: Vec, - /// Block devices + /// Block devices, which can be empty if the kernel doesn't support block devices (without `CONFIG_BLOCK`) pub block_devices: Vec, }