Skip to content

Commit bf988f2

Browse files
committed
docs: fix typo
1 parent ac249b6 commit bf988f2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/tracing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ To generate a valid `Traceparent` header value, the following script can be used
122122
version="00" # fixed in spec at 00
123123
trace_id="$(cat /dev/urandom | tr -dc 'a-f0-9' | fold -w 32 | head -n 1)"
124124
parent_id="00$(cat /dev/urandom | tr -dc 'a-f0-9' | fold -w 14 | head -n 1)"
125-
tace_flag="01" # sampled
126-
traceparent="$version-$trace_id-$parent_id-$tace_flag"
125+
trace_flag="01" # sampled
126+
traceparent="$version-$trace_id-$parent_id-$trace_flag"
127127
echo $traceparent
128128
```
129129

0 commit comments

Comments
 (0)