summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorKenta Murata <mrkn@users.noreply.github.com>2021-09-06 16:01:52 +0900
committerGitHub <noreply@github.com>2021-09-06 16:01:52 +0900
commitf8bb2d9b2724b4a74322ac82d27c32a61153e8dd (patch)
treee6d8c441f0fd07e119a0a151bb81d218222df8ae /doc
parenta5e323f5edb85fa1bd94bb1e67b8ef8f6827056d (diff)
memory_view.c: Rename private to private_data for C++ (#4812)
* memory_view.c: Rename private to private_data for C++ * doc/memory_view.md: Update document * Fix doc/memory_view.md Co-authored-by: Sutou Kouhei <kou@cozmixng.org> Co-authored-by: Sutou Kouhei <kou@cozmixng.org>
Notes
Notes: Merged-By: mrkn <mrkn@ruby-lang.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/memory_view.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/memory_view.md b/doc/memory_view.md
index 646a35423a..a24700d0b1 100644
--- a/doc/memory_view.md
+++ b/doc/memory_view.md
@@ -89,7 +89,7 @@ The MemoryView structure consists of the following members.
A `ndim` size array consisting of the offsets in each dimension when the MemoryView exposes a nested array.
This can be `NULL` when the MemoryView exposes a flat array.
-- `void *const private`
+- `void *private_data`
The private data that MemoryView provider uses internally.
This can be `NULL` when any private data is unnecessary.