summaryrefslogtreecommitdiff
path: root/opendc/opendc-compute
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2020-04-09 17:22:54 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2020-04-09 17:22:54 +0200
commita235ddbfd3c5fb6086cc5b9f637c840e40b46147 (patch)
treee4146076161a6791757b5950c8b2de4bcdc8a840 /opendc/opendc-compute
parent7a11aff2ff46b0fb3bf01f537946d5fcd66a1e90 (diff)
style: Fix typo in interferedBurst
Diffstat (limited to 'opendc/opendc-compute')
-rw-r--r--opendc/opendc-compute/src/main/kotlin/com/atlarge/opendc/compute/virt/HypervisorEvent.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/opendc/opendc-compute/src/main/kotlin/com/atlarge/opendc/compute/virt/HypervisorEvent.kt b/opendc/opendc-compute/src/main/kotlin/com/atlarge/opendc/compute/virt/HypervisorEvent.kt
index 24b19ada..9ceb8bfc 100644
--- a/opendc/opendc-compute/src/main/kotlin/com/atlarge/opendc/compute/virt/HypervisorEvent.kt
+++ b/opendc/opendc-compute/src/main/kotlin/com/atlarge/opendc/compute/virt/HypervisorEvent.kt
@@ -58,7 +58,7 @@ public sealed class HypervisorEvent {
* the hypervisor being interrupted during a slice.
* @property overcommissionedBurst The CPU time that the hypervisor could not grant to the virtual machine since
* it did not have the capacity.
- * @property interferredBurst The sum of CPU time that virtual machines could not utilize due to performance
+ * @property interferedBurst The sum of CPU time that virtual machines could not utilize due to performance
* interference.
* @property numberOfDeployedImages The number of images deployed on this hypervisor.
*/
@@ -67,7 +67,7 @@ public sealed class HypervisorEvent {
public val requestedBurst: Long,
public val grantedBurst: Long,
public val overcommissionedBurst: Long,
- public val interferredBurst: Long,
+ public val interferedBurst: Long,
public val numberOfDeployedImages: Int,
public val hostServer: Server
) : HypervisorEvent()