From e4cecfda227242bcacc2aa7e4d04b7317ef92c03 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Mon, 20 Apr 2009 11:47:02 -0400 Subject: [PATCH] Fix a comment typo. --- src/virtManager/domain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/virtManager/domain.py b/src/virtManager/domain.py index 339b521e2..0dddc5061 100644 --- a/src/virtManager/domain.py +++ b/src/virtManager/domain.py @@ -234,7 +234,7 @@ class vmmDomain(gobject.GObject): self.connection.host_active_processor_count())) # Due to timing diffs between getting wall time & getting # the domain's time, its possible to go a tiny bit over - # 100% vutilization. This freaks out users of the data, so + # 100% utilization. This freaks out users of the data, so # we hard limit it. if pcentCpuTime > 100.0: pcentCpuTime = 100.0