summaryrefslogtreecommitdiffstats
path: root/runtime/src/system/information.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/src/system/information.rs')
-rw-r--r--runtime/src/system/information.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/src/system/information.rs b/runtime/src/system/information.rs
index 93e7a5a4..0f78f5e9 100644
--- a/runtime/src/system/information.rs
+++ b/runtime/src/system/information.rs
@@ -18,9 +18,9 @@ pub struct Information {
pub cpu_brand: String,
/// The number of physical cores on the processor
pub cpu_cores: Option<usize>,
- /// Total RAM size, KB
+ /// Total RAM size, in bytes
pub memory_total: u64,
- /// Memory used by this process, KB
+ /// Memory used by this process, in bytes
pub memory_used: Option<u64>,
/// Underlying graphics backend for rendering
pub graphics_backend: String,