]> granicus.if.org Git - llvm/commitdiff
[llvm-cov] Drop another redundant 'No.' suffix
authorVedant Kumar <vsk@apple.com>
Mon, 19 Sep 2016 00:38:14 +0000 (00:38 +0000)
committerVedant Kumar <vsk@apple.com>
Mon, 19 Sep 2016 00:38:14 +0000 (00:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@281872 91177308-0d34-0410-b5e6-96231b3b80d8

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

index 80ece5ba6acefe297c3aefb9716aa0a57d5260f2..4fb82fbdddc9694b9e5806447e753e25aebec2d1 100644 (file)
@@ -10,7 +10,7 @@ HTML: <h2>Coverage Report</h2>
 HTML: <h4>Created:{{.*}}</h4>
 HTML-FILE: <pre>{{.*}}showProjectSummary.cpp (Binary: showProjectSummary.covmapping)</pre>
 HTML-FUNCTION: <pre>main</pre>
-HTML-HEADER: <td><pre>Line No.</pre></td>
+HTML-HEADER: <td><pre>Line</pre></td>
 HTML-HEADER: <td><pre>Count</pre></td>
 HTML-HEADER: <td><pre>Source (<a href='#L8'>jump to first uncovered line</a>)</pre></td>
 HTML-FOOTER: <h5>Generated by llvm-cov{{.*}}</h5>
index 73da231b2aa73083615a438cce41780fcac4efe4..7acb8c2d39274da705fb8609620dd3d4f53b5721 100644 (file)
@@ -620,7 +620,7 @@ void SourceCoverageViewHTML::renderTableHeader(raw_ostream &OS,
   }
 
   renderLinePrefix(OS, ViewDepth);
-  OS << tag("td", tag("pre", "Line No.")) << tag("td", tag("pre", "Count"))
+  OS << tag("td", tag("pre", "Line")) << tag("td", tag("pre", "Count"))
      << SourceLabel;
   renderLineSuffix(OS, ViewDepth);
 }