From 8c4d3f25a6b31bb200a4af2a14df5cb501d4e84d Mon Sep 17 00:00:00 2001 From: ChinYikMing Date: Sun, 5 Nov 2023 03:15:17 +0800 Subject: [PATCH] remove the unnecessary dot to avoid confusion --- python/pyarrow/io.pxi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/pyarrow/io.pxi b/python/pyarrow/io.pxi index 460e932b86273..1908dcdfa2270 100644 --- a/python/pyarrow/io.pxi +++ b/python/pyarrow/io.pxi @@ -1504,12 +1504,12 @@ cdef class BufferOutputStream(NativeFile): """ An output stream that writes to a resizable buffer. - The buffer is produced as a result when ``get.value()`` is called. + The buffer is produced as a result when ``getvalue()`` is called. Examples -------- Create an output stream, write data to it and finalize it with - ``get.value()``: + ``getvalue()``: >>> import pyarrow as pa >>> f = pa.BufferOutputStream()