aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-03-26 21:36:33 +0100
committerGitHub <noreply@github.com>2019-03-26 21:36:33 +0100
commitbe676eccf1b85719441c66b0ced4f2234335f0ff (patch)
tree66e684b1af977b9660388ae22ed109daaaa34597 /src/nvim/event
parent2d50bf349883958bff1bb584fb3ad5cb97990993 (diff)
parentbec40660330764c59731fbb736af58ffc445bd8c (diff)
downloadrneovim-be676eccf1b85719441c66b0ced4f2234335f0ff.tar.gz
rneovim-be676eccf1b85719441c66b0ced4f2234335f0ff.tar.bz2
rneovim-be676eccf1b85719441c66b0ced4f2234335f0ff.zip
Merge #9600 'doc, gen_vimdoc.py'
Diffstat (limited to 'src/nvim/event')
-rw-r--r--src/nvim/event/stream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/event/stream.h b/src/nvim/event/stream.h
index e713323f5c..694dab6568 100644
--- a/src/nvim/event/stream.h
+++ b/src/nvim/event/stream.h
@@ -13,7 +13,7 @@ typedef struct stream Stream;
/// Type of function called when the Stream buffer is filled with data
///
/// @param stream The Stream instance
-/// @param rbuffer The associated RBuffer instance
+/// @param buf The associated RBuffer instance
/// @param count Number of bytes that was read.
/// @param data User-defined data
/// @param eof If the stream reached EOF.
@@ -23,7 +23,7 @@ typedef void (*stream_read_cb)(Stream *stream, RBuffer *buf, size_t count,
/// Type of function called when the Stream has information about a write
/// request.
///
-/// @param wstream The Stream instance
+/// @param stream The Stream instance
/// @param data User-defined data
/// @param status 0 on success, anything else indicates failure
typedef void (*stream_write_cb)(Stream *stream, void *data, int status);