Skip to content
This repository was archived by the owner on Oct 3, 2023. It is now read-only.

Commit 880d3ed

Browse files
thesandlordkjin
authored andcommitted
doc: fix syntax error in README (#104)
1 parent 7ca6aba commit 880d3ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/opencensus-nodejs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const rootSpanOptions = { name: 'your root span' };
4242
tracing.tracer.startRootSpan(rootSpanOptions, (rootSpan) => {
4343

4444
// You can create as many child spans as needed
45-
childSpan = tracing.tracer.startChildSpan(name: 'your child span');
45+
childSpan = tracing.tracer.startChildSpan('name of your child span');
4646
// Do some operation...
4747
// Finish the child span at the end of it's operation
4848
childSpan.end();

0 commit comments

Comments
 (0)