aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gjoranv@gmail.com>2023-10-24 15:18:29 +0200
committergjoranv <gjoranv@gmail.com>2023-10-24 15:18:29 +0200
commit60b6822e8bc53fb3fd2e5f071f4960bb83216907 (patch)
tree08249e1a10210201e3416bbd20eb6bce34278311
parent019d35078421a33e579992aca13dbe6f14ca67bf (diff)
minor: make comment more general.
-rw-r--r--controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/BillStatus.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/BillStatus.java b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/BillStatus.java
index d6c6262069b..a6ff3804b2a 100644
--- a/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/BillStatus.java
+++ b/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/billing/BillStatus.java
@@ -5,7 +5,7 @@ package com.yahoo.vespa.hosted.controller.api.integration.billing;
*/
public enum BillStatus {
OPEN, // All bills start in this state. The bill can be modified and exported/synced to external systems.
- FROZEN, // Syncing to external systems is switched off. Reviews should be done in this state.
+ FROZEN, // Syncing to external systems is switched off. No changes can be made.
CLOSED, // End state for a valid bill.
VOID; // End state, indicating that the bill is not valid.