docs: fix udf zh typos (#21504)

* docs: fix typos

* docs: fix udf typos
This commit is contained in:
Shuduo Sang 2023-05-28 00:16:16 +08:00 committed by GitHub
parent 1e786624b2
commit 884e7d0db6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: