#6821: fix signature of PyBuffer_Release().
diff --git a/Doc/c-api/buffer.rst b/Doc/c-api/buffer.rst
index 78b284b..72afcfd 100644
--- a/Doc/c-api/buffer.rst
+++ b/Doc/c-api/buffer.rst
@@ -254,9 +254,9 @@
+------------------------------+---------------------------------------------------+
-.. cfunction:: void PyBuffer_Release(PyObject *obj, Py_buffer *view)
+.. cfunction:: void PyBuffer_Release(Py_buffer *view)
- Release the buffer *view* over *obj*. This should be called when the buffer
+ Release the buffer *view*. This should be called when the buffer
is no longer being used as it may free memory from it.