1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-01-30 04:40:41 +02:00

[docs] Log design fix (#4918)

Add missing return type to String func.
This commit is contained in:
Tyler Yahn 2024-02-13 15:47:56 -08:00 committed by GitHub
parent 1568559ea8
commit e8973b75b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -318,7 +318,7 @@ type KeyValue struct {
// KeyValue factories:
func String(key, value string)
func String(key, value string) KeyValue
func Int64(key string, value int64) KeyValue