Fix typo in Java instrumentation doc (#4452)

This commit is contained in:
Tiffany Hrabusa 2024-05-09 08:10:53 -04:00 committed by GitHub
parent 5bb808146c
commit cd5cc0a8dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -650,7 +650,7 @@ public class Dice {
}
public Dice(int min, int max) {
this(min, max, OpenTelemetry.noop())
this(min, max, OpenTelemetry.noop());
}
// ...