aboutsummaryrefslogtreecommitdiffstats
path: root/vdslib
diff options
context:
space:
mode:
Diffstat (limited to 'vdslib')
-rw-r--r--vdslib/src/main/java/com/yahoo/vdslib/state/NodeState.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/vdslib/src/main/java/com/yahoo/vdslib/state/NodeState.java b/vdslib/src/main/java/com/yahoo/vdslib/state/NodeState.java
index 4bb27e8599e..c69b4f79aa0 100644
--- a/vdslib/src/main/java/com/yahoo/vdslib/state/NodeState.java
+++ b/vdslib/src/main/java/com/yahoo/vdslib/state/NodeState.java
@@ -41,8 +41,8 @@ public class NodeState implements Cloneable {
}
/**
- * A state can not be forced to be in a state above it's reported state.
- * For instance, a down being down, cannot be forced up, but a node being down can be forced in maintenance.
+ * A state can not be forced to be in a state above its reported state.
+ * For instance, a node being down cannot be forced to up, but a node being down can be forced to maintenance.
*/
public boolean above(NodeState other) {
return (state.ordinal() > other.state.ordinal());