Skip to content

Commit

Permalink
Note it is total elapsed seconds.
Browse files Browse the repository at this point in the history
  • Loading branch information
sligocki committed Jun 11, 2021
1 parent 36c67f6 commit b1d28c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/circles.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ worker.onmessage = function(e) {
let e_new = document.createElement("div");
let e_summary = document.createElement("button");
e_summary.type = "button";
e_summary.textContent = "Circle " + response.circle_num + " / Size " + response.circle_nodes.length + " / Cumulative " + response.cumulative_size + " / " + time_diff + " seconds elapsed";
e_summary.textContent = "Circle " + response.circle_num + " / Size " + response.circle_nodes.length + " / Cumulative " + response.cumulative_size + " / " + time_diff + " total seconds elapsed";
e_new.appendChild(e_summary);

console.log("Circle " + response.circle_num + " :")
Expand Down

0 comments on commit b1d28c8

Please sign in to comment.