summaryrefslogtreecommitdiff
path: root/app/graphql/types/negated_milestone_wildcard_id_enum.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/negated_milestone_wildcard_id_enum.rb')
-rw-r--r--app/graphql/types/negated_milestone_wildcard_id_enum.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/negated_milestone_wildcard_id_enum.rb b/app/graphql/types/negated_milestone_wildcard_id_enum.rb
index ca27a6c7b6e..9e9f561677a 100644
--- a/app/graphql/types/negated_milestone_wildcard_id_enum.rb
+++ b/app/graphql/types/negated_milestone_wildcard_id_enum.rb
@@ -5,7 +5,7 @@ module Types
graphql_name 'NegatedMilestoneWildcardId'
description 'Negated Milestone ID wildcard values'
- value 'STARTED', 'An open, started milestone (start date <= today).'
- value 'UPCOMING', 'An open milestone due in the future (due date >= today).'
+ value 'STARTED', 'Milestone assigned is open and yet to be started (start date > today).'
+ value 'UPCOMING', 'Milestone assigned is open but due in the past (due date <= today).'
end
end