From 348779850bce0fc915cfc01b9529bbc91c61ed9b Mon Sep 17 00:00:00 2001 From: theotherphil Date: Mon, 26 May 2025 20:59:49 +0100 Subject: [PATCH] Add missing doc comments to system_information_diagnostics_plugin (#19267) # Objective More trivial doc comments towards being able to deny missing docs across the board. --- .../src/system_information_diagnostics_plugin.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crates/bevy_diagnostic/src/system_information_diagnostics_plugin.rs b/crates/bevy_diagnostic/src/system_information_diagnostics_plugin.rs index 376a109ae3..768bbb0828 100644 --- a/crates/bevy_diagnostic/src/system_information_diagnostics_plugin.rs +++ b/crates/bevy_diagnostic/src/system_information_diagnostics_plugin.rs @@ -46,10 +46,15 @@ impl SystemInformationDiagnosticsPlugin { /// [`SystemInformationDiagnosticsPlugin`] for more information. #[derive(Debug, Resource)] pub struct SystemInfo { + /// OS name and version. pub os: String, + /// System kernel version. pub kernel: String, + /// CPU model name. pub cpu: String, + /// Physical core count. pub core_count: String, + /// System RAM. pub memory: String, }