summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2020-02-11 14:16:29 +0100
committerGeorgios Andreadis <info@gandreadis.com>2020-02-11 14:40:15 +0100
commitf5913d767d17d1dc676fa95174f5d95d0ea12ade (patch)
tree35b29ec8475319ce27d25fdd6a3eecbf4f4d23d8
parent30d03df110bd0f2f805eaf89026660926929fa38 (diff)
Update Environment.kt
Add missing dot
-rw-r--r--opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Environment.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Environment.kt b/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Environment.kt
index 5bdff0b6..62309bf9 100644
--- a/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Environment.kt
+++ b/opendc/opendc-core/src/main/kotlin/com/atlarge/opendc/core/Environment.kt
@@ -30,7 +30,7 @@ package com.atlarge.opendc.core
* scheduled maintenance, allocation and other constraints.
*
* @property name The name of the environment.
- * @property description A small textual description about the environment that is being modeled
+ * @property description A small textual description about the environment that is being modeled.
* @property platforms The cloud platforms (such as AWS or GCE) in this environment.
*/
data class Environment(val name: String, val description: String?, val platforms: List<Platform>)