diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-04-09 17:22:54 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2020-04-09 17:22:54 +0200 |
| commit | a235ddbfd3c5fb6086cc5b9f637c840e40b46147 (patch) | |
| tree | e4146076161a6791757b5950c8b2de4bcdc8a840 /opendc/opendc-compute/src | |
| parent | 7a11aff2ff46b0fb3bf01f537946d5fcd66a1e90 (diff) | |
style: Fix typo in interferedBurst
Diffstat (limited to 'opendc/opendc-compute/src')
| -rw-r--r-- | opendc/opendc-compute/src/main/kotlin/com/atlarge/opendc/compute/virt/HypervisorEvent.kt | 4 |
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() |
