Skip to content

Commit

Permalink
chore(trace): fix typo in trace-to-event-format.mjs (#39279)
Browse files Browse the repository at this point in the history
arbitary -> arbitrary
  • Loading branch information
eltociear committed Aug 3, 2022
1 parent 1039dd4 commit 11c9d42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/trace-to-event-format.mjs
Expand Up @@ -10,9 +10,9 @@ const createEvent = (trace, ph, cat) => ({
ts: trace.timestamp,
// event category. We only use duration events (B/E) for now.
ph,
// process id. We don't collect this for now, putting arbitary numbers.
// process id. We don't collect this for now, putting arbitrary numbers.
pid: 1,
// thread id. We don't collect this for now, putting arbitary numebers.
// thread id. We don't collect this for now, putting arbitrary numebers.
tid: 10,
args: trace.tags,
})
Expand Down

0 comments on commit 11c9d42

Please sign in to comment.