From d6067be8b5e1e4d2d9faa3feb429cb9f37691635 Mon Sep 17 00:00:00 2001 From: Charly Gomez Date: Tue, 10 Feb 2026 16:05:33 +0100 Subject: [PATCH] update jsdocs --- packages/core/src/metrics/public-api.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/src/metrics/public-api.ts b/packages/core/src/metrics/public-api.ts index 7dcfe74dfdb0..2982c10ffcf7 100644 --- a/packages/core/src/metrics/public-api.ts +++ b/packages/core/src/metrics/public-api.ts @@ -38,7 +38,7 @@ function captureMetric(type: MetricType, name: string, value: number, options?: } /** - * @summary Increment a counter metric. Requires the `_experiments.enableMetrics` option to be enabled. + * @summary Increment a counter metric. * * @param name - The name of the counter metric. * @param value - The value to increment by (defaults to 1). @@ -72,7 +72,7 @@ export function count(name: string, value: number = 1, options?: MetricOptions): } /** - * @summary Set a gauge metric to a specific value. Requires the `_experiments.enableMetrics` option to be enabled. + * @summary Set a gauge metric to a specific value. * * @param name - The name of the gauge metric. * @param value - The current value of the gauge. @@ -106,7 +106,7 @@ export function gauge(name: string, value: number, options?: MetricOptions): voi } /** - * @summary Record a value in a distribution metric. Requires the `_experiments.enableMetrics` option to be enabled. + * @summary Record a value in a distribution metric. * * @param name - The name of the distribution metric. * @param value - The value to record in the distribution.