Fix a typo.
This commit is contained in:
parent
fbaa8b7732
commit
2da7e1fb5a
|
@ -48,7 +48,7 @@
|
||||||
{% if statistic.mergeRequests.opened > 0 %}
|
{% if statistic.mergeRequests.opened > 0 %}
|
||||||
<li>
|
<li>
|
||||||
<strong>{{ statistic.mergeRequests.opened }}</strong>
|
<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.
|
{{ pluralize('was', 'were', statistic.mergeRequests.opened) }} opened.
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -56,7 +56,7 @@
|
||||||
{% if statistic.mergeRequests.closed > 0 %}
|
{% if statistic.mergeRequests.closed > 0 %}
|
||||||
<li>
|
<li>
|
||||||
<strong>{{ statistic.mergeRequests.closed }}</strong>
|
<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.
|
{{ pluralize('was', 'were', statistic.mergeRequests.closed) }} closed/merged.
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Reference in New Issue