diff options
author | Yudai Takada <13041216+ydah@users.noreply.github.com> | 2022-11-21 14:07:18 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-20 21:07:18 -0800 |
commit | 29e6d97517bbd4dcc540464c8473172232f3e228 (patch) | |
tree | 80716a0b7b7e8e6c96ceacf9ab1e7b2dcdc22c27 /io_buffer.c | |
parent | d8601621edcf29e3323b90dcf04b774edd9fb45e (diff) |
Fix typos (#6775)
* s/Innteger/Integer/ * s/diretory/directory/ * s/Bufer/Buffer/ * s/defalt/default/ * s/covearge/coverage/
Notes
Notes: Merged-By: k0kubun <takashikkbn@gmail.com>
Diffstat (limited to 'io_buffer.c')
-rw-r--r-- | io_buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io_buffer.c b/io_buffer.c index dc9d613524..e5d6c19612 100644 --- a/io_buffer.c +++ b/io_buffer.c @@ -535,7 +535,7 @@ io_flags_for_size(size_t size) * Create a new zero-filled IO::Buffer of +size+ bytes. * By default, the buffer will be _internal_: directly allocated chunk * of the memory. But if the requested +size+ is more than OS-specific - * IO::Bufer::PAGE_SIZE, the buffer would be allocated using the + * IO::Buffer::PAGE_SIZE, the buffer would be allocated using the * virtual memory mechanism (anonymous +mmap+ on Unix, +VirtualAlloc+ * on Windows). The behavior can be forced by passing IO::Buffer::MAPPED * as a second parameter. |