From 2fd7c17ae2b910ab4798c87a582849a18d8f2751 Mon Sep 17 00:00:00 2001 From: Michael Spector Date: Sun, 28 Sep 2025 07:19:03 +0100 Subject: [PATCH] percentile_tdigest(): fixed arguments doc --- data-explorer/kusto/query/percentile-tdigest-function.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data-explorer/kusto/query/percentile-tdigest-function.md b/data-explorer/kusto/query/percentile-tdigest-function.md index 73603694fd..d720b5496d 100644 --- a/data-explorer/kusto/query/percentile-tdigest-function.md +++ b/data-explorer/kusto/query/percentile-tdigest-function.md @@ -13,7 +13,7 @@ Calculates the percentile result from the `tdigest` results (which was generated ## Syntax -`percentile_tdigest(`*expr*`,` *percentile1* `,` *typeLiteral*`)` +`percentile_tdigest(`*expr*`,` *percentile* [`,` *typeLiteral*]`)` [!INCLUDE [syntax-conventions-note](../includes/syntax-conventions-note.md)] @@ -21,7 +21,7 @@ Calculates the percentile result from the `tdigest` results (which was generated |Name|Type|Required|Description| |--|--|--|--| -|*expr*| `string` | :heavy_check_mark:|An expression that was generated by [`tdigest`](tdigest-aggregation-function.md) or [tdigest_merge()](tdigest-merge-aggregation-function.md).| +|*expr*| `dynamic` | :heavy_check_mark:|An expression that was generated by [`tdigest`](tdigest-aggregation-function.md) or [tdigest_merge()](tdigest-merge-aggregation-function.md).| |*percentile*| `real` | :heavy_check_mark:|The value that specifies the percentile.| |*typeLiteral*| `string` ||A type literal. If provided, the result set will be of this type. For example, `typeof(long)` will cast all results to type `long`.