Skip to content

Commit 903fb39

Browse files
Merge pull request #574 from wesleywiser/patch-2
Fix "Total Time" tooltip to say "cpu-time" instead of "wall-time"
2 parents 9249fb0 + 19f839c commit 903fb39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/static/detailed-query.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ <h3 id="title"></h3>
177177
let t = td(row, cur.percent_total_time.toFixed(2) + "%");
178178
if (idx == 0) {
179179
t.innerText += "*";
180-
t.setAttribute("title", "% of wall-time stat");
180+
t.setAttribute("title", "% of cpu-time stat");
181181
}
182182
}
183183
if (prev) {

0 commit comments

Comments
 (0)