aboutsummaryrefslogtreecommitdiffstats
path: root/src/stream.c
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2019-02-04 13:20:30 +0100
committerMax <msuraev@sysmocom.de>2019-02-04 13:23:27 +0100
commite3366cf1446cf4bea1ab740c4b12d14b3c996eaf (patch)
tree85bf08fc9243f5ad3dfaba31bc9205e452f5d17b /src/stream.c
parenta720365c02bced8b1adf5f1c41170d6ff83b4dab (diff)
Stream client: fix doxygen typo
Diffstat (limited to 'src/stream.c')
-rw-r--r--src/stream.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stream.c b/src/stream.c
index 902e688..dbbaa9c 100644
--- a/src/stream.c
+++ b/src/stream.c
@@ -388,7 +388,7 @@ osmo_stream_cli_set_data(struct osmo_stream_cli *cli, void *data)
}
/*! \brief Get application private data of the stream client socket
- * \param[in] cli Stream Client to modif
+ * \param[in] cli Stream Client to modify
* \returns Application private data, as set by \ref osmo_stream_cli_set_data() */
void *osmo_stream_cli_get_data(struct osmo_stream_cli *cli)
{
@@ -396,7 +396,7 @@ void *osmo_stream_cli_get_data(struct osmo_stream_cli *cli)
}
/*! \brief Get Osmocom File Descriptor of the stream client socket
- * \param[in] cli Stream Client to modif
+ * \param[in] cli Stream Client to modify
* \returns Pointer to \ref osmo_fd */
struct osmo_fd *
osmo_stream_cli_get_ofd(struct osmo_stream_cli *cli)
@@ -405,7 +405,7 @@ osmo_stream_cli_get_ofd(struct osmo_stream_cli *cli)
}
/*! \brief Set the call-back function called on connect of the stream client socket
- * \param[in] cli Stream Client to modif
+ * \param[in] cli Stream Client to modify
* \param[in] connect_cb Call-back function to be called upon connect */
void
osmo_stream_cli_set_connect_cb(struct osmo_stream_cli *cli,
@@ -415,7 +415,7 @@ osmo_stream_cli_set_connect_cb(struct osmo_stream_cli *cli,
}
/*! \brief Set the call-back function called to read from the stream client socket
- * \param[in] cli Stream Client to modif
+ * \param[in] cli Stream Client to modify
* \param[in] read_cb Call-back function to be called when we want to read */
void
osmo_stream_cli_set_read_cb(struct osmo_stream_cli *cli,