diff --git a/src/OpenTelemetry/Sdk.cs b/src/OpenTelemetry/Sdk.cs
index 1554d447bf6..72b5e8e5913 100644
--- a/src/OpenTelemetry/Sdk.cs
+++ b/src/OpenTelemetry/Sdk.cs
@@ -55,19 +55,26 @@ public static void SetDefaultTextMapPropagator(TextMapPropagator textMapPropagat
}
///
- /// Creates MeterProviderBuilder which should be used to build MeterProvider.
+ /// Creates a which is used to build
+ /// a . In a typical application, a single
+ /// is created at application startup and disposed
+ /// at application shutdown. It is important to ensure that the provider is not
+ /// disposed too early.
///
- /// MeterProviderBuilder instance, which should be used to build MeterProvider.
+ /// instance, which is used to build a .
public static MeterProviderBuilder CreateMeterProviderBuilder()
{
return new MeterProviderBuilderSdk();
}
///
- /// Creates TracerProviderBuilder which should be used to build
- /// TracerProvider.
+ /// Creates a which is used to build
+ /// a . In a typical application, a single
+ /// is created at application startup and disposed
+ /// at application shutdown. It is important to ensure that the provider is not
+ /// disposed too early.
///
- /// TracerProviderBuilder instance, which should be used to build TracerProvider.
+ /// instance, which is used to build a .
public static TracerProviderBuilder CreateTracerProviderBuilder()
{
return new TracerProviderBuilderSdk();