From 2da7e1fb5a062a7a69f141d66a60d08082696513 Mon Sep 17 00:00:00 2001 From: Bauke Date: Tue, 31 Mar 2020 22:25:16 +0200 Subject: [PATCH] Fix a typo. --- source/pages/templates/statistics.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/pages/templates/statistics.html b/source/pages/templates/statistics.html index 6fd7c8c..5b54dd0 100644 --- a/source/pages/templates/statistics.html +++ b/source/pages/templates/statistics.html @@ -48,7 +48,7 @@ {% if statistic.mergeRequests.opened > 0 %}
  • {{ statistic.mergeRequests.opened }} - {{ pluralize('issue', 'issues', statistic.mergeRequests.opened) }} + {{ pluralize('merge request', 'merge requests', statistic.mergeRequests.opened) }} {{ pluralize('was', 'were', statistic.mergeRequests.opened) }} opened.
  • {% endif %} @@ -56,7 +56,7 @@ {% if statistic.mergeRequests.closed > 0 %}
  • {{ statistic.mergeRequests.closed }} - {{ pluralize('issue', 'issues', statistic.mergeRequests.closed) }} + {{ pluralize('merge request', 'merge requests', statistic.mergeRequests.closed) }} {{ pluralize('was', 'were', statistic.mergeRequests.closed) }} closed/merged.
  • {% endif %}