aboutsummaryrefslogtreecommitdiffstats
path: root/node-repository
diff options
context:
space:
mode:
authorgjoranv <gjoranv@gmail.com>2016-11-10 15:58:30 +0100
committerGitHub <noreply@github.com>2016-11-10 15:58:30 +0100
commit03e980e5c4552642f9878a804764debdd62e6576 (patch)
treef8cdcdb8a3d873636040248c95a9563f51fb5390 /node-repository
parent3be1ea33e4973a2072b34df32116fdedb34400b2 (diff)
parentf3db734a21415175b7e4b1d0051a5b36b70cd316 (diff)
Merge pull request #1058 from yahoo/bratseth/field-operation-order
Order field operations
Diffstat (limited to 'node-repository')
-rw-r--r--node-repository/src/main/java/com/yahoo/vespa/hosted/provision/node/Flavor.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/node/Flavor.java b/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/node/Flavor.java
index 1039beea7c0..8f870687fd2 100644
--- a/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/node/Flavor.java
+++ b/node-repository/src/main/java/com/yahoo/vespa/hosted/provision/node/Flavor.java
@@ -47,7 +47,8 @@ public class Flavor {
/**
* Get the monthly cost (total cost of ownership) in USD for this flavor, typically total cost
* divided by 36 months.
- * @return Monthly cost in USD
+ *
+ * @return monthly cost in USD
*/
public int cost() { return cost; }
@@ -65,7 +66,7 @@ public class Flavor {
/**
* Returns the canonical name of this flavor - which is the name which should be used as an interface to users.
- * The canonical name of this flavor is
+ * The canonical name of this flavor is:
* <ul>
* <li>If it replaces one flavor, the canonical name of the flavor it replaces
* <li>If it replaces multiple or no flavors - itself
@@ -122,7 +123,7 @@ public class Flavor {
public String toString() { return "flavor '" + name + "'"; }
public enum Type {
- undefined, // Deafult value in config (node-repository.def)
+ undefined, // Default value in config (node-repository.def)
BARE_METAL,
VIRTUAL_MACHINE,
DOCKER_CONTAINER