From 884e7d0db669c60458af1287e0b4d003ab3fd9d5 Mon Sep 17 00:00:00 2001 From: Shuduo Sang Date: Sun, 28 May 2023 00:16:16 +0800 Subject: [PATCH] docs: fix udf zh typos (#21504) * docs: fix typos * docs: fix udf typos --- docs/zh/07-develop/09-udf.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zh/07-develop/09-udf.md b/docs/zh/07-develop/09-udf.md index 92f5d2a857..e43275d5e0 100644 --- a/docs/zh/07-develop/09-udf.md +++ b/docs/zh/07-develop/09-udf.md @@ -303,7 +303,7 @@ def start() -> bytes: def reduce(inputs: datablock, buf: bytes) -> bytes # deserialize buf to state # reduce the inputs and state into new_state. - # use inputs.data(i,j) to access python ojbect of location(i,j) + # use inputs.data(i,j) to access python object of location(i,j) # serialize new_state into new_state_bytes return new_state_bytes def finish(buf: bytes) -> output_type: -- GitLab