From 730e087d5e72d14aff0578e31d4eda3dd2f52c2e Mon Sep 17 00:00:00 2001 From: wade zhang <95411902+gccgdb1234@users.noreply.github.com> Date: Fri, 26 May 2023 19:21:13 +0800 Subject: [PATCH] Update 09-udf.md --- docs/en/07-develop/09-udf.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/07-develop/09-udf.md b/docs/en/07-develop/09-udf.md index 92bd4efd25..f5f1230026 100644 --- a/docs/en/07-develop/09-udf.md +++ b/docs/en/07-develop/09-udf.md @@ -320,7 +320,7 @@ def process(input: datablock) -> tuple[output_type]: Description: this function prcesses datablock, which is the input; you can use datablock.data(row, col) to access the python object at location(row,col); the output is a tuple object consisted of objects of type outputtype -### Aggregate UDF Interface +#### Aggregate UDF Interface The implementation of an aggregate function is described as follows: