summaryrefslogtreecommitdiffstats
path: root/config-provisioning
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@oath.com>2019-11-13 15:10:45 +0100
committerGitHub <noreply@github.com>2019-11-13 15:10:45 +0100
commitef81b1ef042504a69df0e5010aba2bf876d93fb3 (patch)
tree23e730314a513feefb9509b3f8de0645620348e0 /config-provisioning
parent2b0bb42408c14ab99a83938196d9a68e459c6ac4 (diff)
Update config-provisioning/src/main/java/com/yahoo/config/provision/NodeResources.java
Co-Authored-By: Valerij Fredriksen <freva@users.noreply.github.com>
Diffstat (limited to 'config-provisioning')
-rw-r--r--config-provisioning/src/main/java/com/yahoo/config/provision/NodeResources.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-provisioning/src/main/java/com/yahoo/config/provision/NodeResources.java b/config-provisioning/src/main/java/com/yahoo/config/provision/NodeResources.java
index 77586ce3eed..46ad47e9ea0 100644
--- a/config-provisioning/src/main/java/com/yahoo/config/provision/NodeResources.java
+++ b/config-provisioning/src/main/java/com/yahoo/config/provision/NodeResources.java
@@ -46,7 +46,7 @@ public class NodeResources {
/**
* Compares storage type by cost: Remote is cheaper, and therefore before.
- * Any can be remote and therefore costs the same as slow.
+ * Any can be remote and therefore costs the same as remote.
*/
public static int compare(StorageType a, StorageType b) {
if (a == any) a = remote;