diff --git a/opentelemetry-otlp/src/lib.rs b/opentelemetry-otlp/src/lib.rs index 9b903851f0..3e02ef16a8 100644 --- a/opentelemetry-otlp/src/lib.rs +++ b/opentelemetry-otlp/src/lib.rs @@ -106,7 +106,7 @@ //! * `gzip-tonic`: Use gzip compression for `tonic` grpc layer. //! * `zstd-tonic`: Use zstd compression for `tonic` grpc layer. //! * `tls-roots`: Adds system trust roots to rustls-based gRPC clients using the rustls-native-certs crate -//! * `tls-webkpi-roots`: Embeds Mozilla's trust roots to rustls-based gRPC clients using the webkpi-roots crate +//! * `tls-webpki-roots`: Embeds Mozilla's trust roots to rustls-based gRPC clients using the webpki-roots crate //! //! The following feature flags offer additional configurations on http: //! @@ -114,7 +114,7 @@ //! * `reqwest-blocking-client`: Use reqwest blocking http client. //! * `reqwest-client`: Use reqwest http client. //! * `reqwest-rustls`: Use reqwest with TLS with system trust roots via `rustls-native-certs` crate. -//! * `reqwest-rustls-webkpi-roots`: Use reqwest with TLS with Mozilla's trust roots via `webkpi-roots` crate. +//! * `reqwest-rustls-webpki-roots`: Use reqwest with TLS with Mozilla's trust roots via `webpki-roots` crate. //! //! # Kitchen Sink Full Configuration //!