Skip to content

Commit

Permalink
[llvm-cov] Drop redundant "No." suffix in a column title
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@280181 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
vedantk committed Aug 31, 2016
1 parent 74a597b commit 751f50e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/tools/llvm-cov/showProjectSummary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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>
2 changes: 1 addition & 1 deletion tools/llvm-cov/SourceCoverageViewHTML.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

0 comments on commit 751f50e

Please sign in to comment.