[llvm-cov] Drop redundant "No." suffix in a column title
authorVedant Kumar <vsk@apple.com>
Wed, 31 Aug 2016 00:09:44 +0000 (00:09 +0000)
committerVedant Kumar <vsk@apple.com>
Wed, 31 Aug 2016 00:09:44 +0000 (00:09 +0000)
llvm-svn: 280181

llvm/test/tools/llvm-cov/showProjectSummary.cpp
llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp

index bfe4c0d..6d3d4d5 100644 (file)
@@ -42,5 +42,5 @@ int main(int argc, char ** argv) {
 // HTML-FILE: showProjectSummary.covmapping</pre>
 // HTML-FUNCTION: <pre>Function: main</pre>
 // HTML-HEADER: <tr><td><span><pre>Line No.</pre></span></td>
-// HTML-HEADER: <td><span><pre>Count No.</pre></span></td>
+// HTML-HEADER: <td><span><pre>Count</pre></span></td>
 // HTML-HEADER: <td><span><pre>Source</pre></span></td>
index 4b2331c..40bc650 100644 (file)
@@ -568,7 +568,7 @@ void SourceCoverageViewHTML::renderTableHeader(raw_ostream &OS,
                                                unsigned ViewDepth) {
   renderLinePrefix(OS, ViewDepth);
   OS << tag("td", tag("span", tag("pre", escape("Line No.", getOptions()))))
-     << tag("td", tag("span", tag("pre", escape("Count No.", getOptions()))))
+     << tag("td", tag("span", tag("pre", escape("Count", getOptions()))))
      << tag("td", tag("span", tag("pre", escape("Source", getOptions()))));
   renderLineSuffix(OS, ViewDepth);
 }