From: Fiona Ebner Date: Tue, 21 Mar 2023 12:33:43 +0000 (+0100) Subject: pve ha: fix typo in comment X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=8d7c1922b239d332b51ee5d90dd12e4a62bb96ae;p=proxmox-resource-scheduling.git pve ha: fix typo in comment Signed-off-by: Fiona Ebner --- diff --git a/src/pve_static.rs b/src/pve_static.rs index 6663b70..814d44f 100644 --- a/src/pve_static.rs +++ b/src/pve_static.rs @@ -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,