From a4426d79e3cf21815f3b96d82db2d030a291ba7f Mon Sep 17 00:00:00 2001 From: hiroyuki kikuchi Date: Sun, 4 Sep 2022 19:47:08 +0900 Subject: [PATCH 1/2] fix(typo): numebers -> numbers --- scripts/trace-to-event-format.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/trace-to-event-format.mjs b/scripts/trace-to-event-format.mjs index 2361ed71129c..11652ebeaf3a 100644 --- a/scripts/trace-to-event-format.mjs +++ b/scripts/trace-to-event-format.mjs @@ -12,7 +12,7 @@ const createEvent = (trace, ph, cat) => ({ ph, // process id. We don't collect this for now, putting arbitrary numbers. pid: 1, - // thread id. We don't collect this for now, putting arbitrary numebers. + // thread id. We don't collect this for now, putting arbitrary numbers. tid: 10, args: trace.tags, }) @@ -112,7 +112,7 @@ const collectTraces = async (filePath, outFilePath, metadata) => { const traces = new Map() const rootTraces = [] - // Input trace file contains newline-seperated sets of traces, where each line is valid JSON + // Input trace file contains newline-separated sets of traces, where each line is valid JSON // type of Array. Read it line-by-line to manually reconstruct trace trees. // // We have to read through end of the trace - From c0096fdc9fb4f64ed201f7c81e323fdf62854206 Mon Sep 17 00:00:00 2001 From: hiroyuki kikuchi Date: Sun, 4 Sep 2022 19:47:33 +0900 Subject: [PATCH 2/2] fix(typo): seperated -> separated --- scripts/trace-dd.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/trace-dd.mjs b/scripts/trace-dd.mjs index 3b8336b70a36..a08c09c0fd75 100644 --- a/scripts/trace-dd.mjs +++ b/scripts/trace-dd.mjs @@ -99,7 +99,7 @@ const collectTraces = async (filePath, metadata) => { const traces = new Map() const rootTraces = [] - // Input trace file contains newline-seperated sets of traces, where each line is valid JSON + // Input trace file contains newline-separated sets of traces, where each line is valid JSON // type of Array. Read it line-by-line to manually reconstruct trace trees. // // We have to read through end of the trace -