From c3cf990b37ea7fa97e12228ec4da25c457ce46eb Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Mon, 20 Nov 2017 16:10:14 +0000 Subject: [PATCH] spell out "implementation" There's no need for the (nonstandard) abbreviation. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 3c0773a..6f569a9 100644 --- a/index.html +++ b/index.html @@ -110,7 +110,7 @@ function displayResults() { var implem = ""; if (group.elements.length > 0) { - implem = '' + group.elements.length + ' implem' + (group.elements.length === 1 ? '' : 's') + ''; + implem = '' + group.elements.length + ' implementation' + (group.elements.length === 1 ? '' : 's') + ''; } groupContentHeaderHtml.append($('

Results ' + implem + '#' + i + '

'));