Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion csharp/src/lesson02/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ You may have noticed a few unpleasant side effects of our recent changes
* we had to pass the Span object as the first argument to each function
* we also had to write somewhat verbose try/finally code to finish the spans

OpenTracing API for C# provides a better way. Using thread-locals and the notion of an "active span",
OpenTracing API for C# provides a better way. Using context based storage (via AsyncLocal) and the notion of an "active span",
we can avoid passing the span through our code and just access it via `_tracer`.

```csharp
Expand Down