[tool] fix typo in heap-layout and system-analyzer

Change-Id: I443d6e84fb3ca9d27456300b777105319ec0fe25
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3352457
Reviewed-by: Camillo Bruni <cbruni@chromium.org>
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Cr-Commit-Position: refs/heads/main@{#78563}
This commit is contained in:
JianxiaoLuIntel 2021-12-24 20:38:38 +08:00 committed by V8 LUCI CQ
parent b6092749a3
commit e7f92432db
2 changed files with 4 additions and 4 deletions

View File

@ -60,10 +60,10 @@ found in the LICENSE file. -->
<button id="button_next" type="button" onclick="OnNextClick()">Next</button>
</div>
<p>Heap layout is a HTML-based tool for visualizing V8-internal page layout.</p>
<p>Visualize page layout that have been gathered using</p>
<p>Heap layout is a HTML-based tool for visualizing V8-internal heap layout.</p>
<p>Visualize heap layout that have been gathered using</p>
<ul>
<li><code>--trace-gc-page-layout</code> on V8</li>
<li><code>--trace-gc-heap-layout</code> on V8</li>
</ul>

View File

@ -4,7 +4,7 @@
import {DOM, FileReader} from './helper.mjs';
DOM.defineCustomElement(
'../../js/log-file-reader',
'../js/log-file-reader',
(templateText) => class LogFileReader extends FileReader {
constructor() {
super(templateText);