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 - 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 -