]> git.proxmox.com Git - proxmox-resource-scheduling.git/commitdiff
pve ha: fix typo in comment
authorFiona Ebner <f.ebner@proxmox.com>
Tue, 21 Mar 2023 12:33:43 +0000 (13:33 +0100)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Tue, 21 Mar 2023 13:52:29 +0000 (14:52 +0100)
Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
src/pve_static.rs

index 6663b703bd07bef690d9e2d1367ac58bd5aab22b..814d44fcda50c7e033ab4782cfc3336df014c924 100644 (file)
@@ -9,11 +9,11 @@ use crate::topsis;
 pub struct StaticNodeUsage {
     /// Hostname of the node.
     pub name: String,
-    /// CPU utilization. Can be more than `maxcpu` if overcommited.
+    /// CPU utilization. Can be more than `maxcpu` if overcommitted.
     pub cpu: f64,
     /// Total number of CPUs.
     pub maxcpu: usize,
-    /// Used memory in bytes. Can be more than `maxmem` if overcommited.
+    /// Used memory in bytes. Can be more than `maxmem` if overcommitted.
     pub mem: usize,
     /// Total memory in bytes.
     pub maxmem: usize,