summaryrefslogtreecommitdiffstats
path: root/controller-api
diff options
context:
space:
mode:
authorJon Marius Venstad <jvenstad@yahoo-inc.com>2018-08-13 13:15:14 +0200
committerJon Marius Venstad <jvenstad@yahoo-inc.com>2018-08-13 13:15:14 +0200
commite13eba05766d6329a31339a07d0a3da19c8c6b8c (patch)
tree8756c8809fa2a7152ed37737d2ea1e50233a0bb9 /controller-api
parent6559604c69d67534ec8ed5c8f79ca1981d9cc56b (diff)
Fix little things
Diffstat (limited to 'controller-api')
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/RunId.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/RunId.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/RunId.java
index a46cec1bb40..da1a3029619 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/RunId.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/deployment/RunId.java
@@ -48,7 +48,7 @@ public class RunId {
@Override
public String toString() {
- return "Run " + number + " of " + type + " for " + application;
+ return "run " + number + " of " + type + " for " + application;
}
}