[llvm-cov] Drop another redundant 'No.' suffix

llvm-svn: 281872
This commit is contained in:
Vedant Kumar 2016-09-19 00:38:14 +00:00
parent 44bc28c9c9
commit 98ba34e5ad
2 changed files with 2 additions and 2 deletions

View 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>

View 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);
}