Fix a typo (#2523)

This commit is contained in:
Benoit 2022-05-04 16:54:00 +02:00 committed by GitHub
parent 53ba5dd524
commit 9410cb6131
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ a thread that started a span.
Examples of where `thread.id` and `thread.name` can be extracted from: Examples of where `thread.id` and `thread.name` can be extracted from:
| Launguage or platform | `thread.id` | `thread.name` | | Language or platform | `thread.id` | `thread.name` |
|-----------------------|----------------------------------------|------------------------------------| |-----------------------|----------------------------------------|------------------------------------|
| JVM | `Thread.currentThread().getId()` | `Thread.currentThread().getName()` | | JVM | `Thread.currentThread().getId()` | `Thread.currentThread().getName()` |
| .NET | `Thread.CurrentThread.ManagedThreadId` | `Thread.CurrentThread.Name` | | .NET | `Thread.CurrentThread.ManagedThreadId` | `Thread.CurrentThread.Name` |