Bauke/tildes-issue-log
Bauke
/
tildes-issue-log
Archived
1
Fork 0

Fix a typo.

This commit is contained in:
Bauke 2020-03-31 22:25:16 +02:00
parent fbaa8b7732
commit 2da7e1fb5a
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@
{% if statistic.mergeRequests.opened > 0 %}
<li>
<strong>{{ statistic.mergeRequests.opened }}</strong>
{{ pluralize('issue', 'issues', statistic.mergeRequests.opened) }}
{{ pluralize('merge request', 'merge requests', statistic.mergeRequests.opened) }}
{{ pluralize('was', 'were', statistic.mergeRequests.opened) }} opened.
</li>
{% endif %}
@ -56,7 +56,7 @@
{% if statistic.mergeRequests.closed > 0 %}
<li>
<strong>{{ statistic.mergeRequests.closed }}</strong>
{{ pluralize('issue', 'issues', statistic.mergeRequests.closed) }}
{{ pluralize('merge request', 'merge requests', statistic.mergeRequests.closed) }}
{{ pluralize('was', 'were', statistic.mergeRequests.closed) }} closed/merged.
</li>
{% endif %}