From 6db0fc27bdc37eb4e6a116096e07e81072f85cdd Mon Sep 17 00:00:00 2001 From: Cijo Thomas Date: Thu, 7 Dec 2023 17:19:31 -0800 Subject: [PATCH] fix link rendering --- src/OpenTelemetry.Api/Trace/ActivityExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpenTelemetry.Api/Trace/ActivityExtensions.cs b/src/OpenTelemetry.Api/Trace/ActivityExtensions.cs index a349784d607..d8ac769b9c9 100644 --- a/src/OpenTelemetry.Api/Trace/ActivityExtensions.cs +++ b/src/OpenTelemetry.Api/Trace/ActivityExtensions.cs @@ -61,7 +61,7 @@ public static Status GetStatus(this Activity activity) /// /// Activity instance. /// Exception to be recorded. - /// The exception is recorded as per . + /// The exception is recorded as per specification. /// "exception.stacktrace" is represented using the value of Exception.ToString. /// [MethodImpl(MethodImplOptions.AggressiveInlining)] @@ -74,7 +74,7 @@ public static void RecordException(this Activity activity, Exception? ex) /// Activity instance. /// Exception to be recorded. /// Additional tags to record on the event. - /// The exception is recorded as per . + /// The exception is recorded as per specification. /// "exception.stacktrace" is represented using the value of Exception.ToString. /// [MethodImpl(MethodImplOptions.AggressiveInlining)]