diff options
author | Christopher Baines <mail@cbaines.net> | 2019-01-06 11:15:43 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-01-06 11:15:43 +0000 |
commit | 9d3799ccefc4c9a546132f085dd9980a2cc9b7b6 (patch) | |
tree | 2fb3f6da871f3d98e1e54ed7b7a65b736cfe9857 | |
parent | b52c333af7ef929741325e24e5894da37958e7ea (diff) | |
download | govuk-mini-environment-admin-9d3799ccefc4c9a546132f085dd9980a2cc9b7b6.tar govuk-mini-environment-admin-9d3799ccefc4c9a546132f085dd9980a2cc9b7b6.tar.gz |
Change how revisions are described
"using" suggests a current use, whereas the past tense would be more
accurate, as it's not currently using this revision.
-rw-r--r-- | app/views/govuk_guix/revisions/show.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/govuk_guix/revisions/show.html.erb b/app/views/govuk_guix/revisions/show.html.erb index 2f75c56..d2ab03f 100644 --- a/app/views/govuk_guix/revisions/show.html.erb +++ b/app/views/govuk_guix/revisions/show.html.erb @@ -36,7 +36,7 @@ License along with the GOV.UK Mini Environment Admin. If not, see </div> <% if @revision.mini_environments.any? %> - <h2>There <%= @revision.mini_environments.count == 1 ? 'is' : 'are' %> <%= pluralize(@revision.mini_environments.count, 'mini environment') %> using this revision</h2> + <h2>There <%= @revision.mini_environments.count == 1 ? 'is' : 'are' %> <%= pluralize(@revision.mini_environments.count, 'mini environment') %> that uses this revision</h2> <div class="row"> <div class="col-md-8"> |