aboutsummaryrefslogtreecommitdiff
path: root/vis-lua.c
diff options
context:
space:
mode:
authorRandy Palamar <palamar@ualberta.ca>2023-08-24 21:08:35 -0600
committerRandy Palamar <palamar@ualberta.ca>2023-08-24 21:08:40 -0600
commitbac2312f1b9f3f05118aee5527ff8ec54a73349e (patch)
tree1b33dba1b67503619d978abb499bd06cfb4d1958 /vis-lua.c
parent0b015320382e74fcb385a46a81304f588ed27f77 (diff)
downloadvis-bac2312f1b9f3f05118aee5527ff8ec54a73349e.tar.gz
vis-bac2312f1b9f3f05118aee5527ff8ec54a73349e.tar.xz
lua api: fix a couple typos in process_response() documentation
I thought I fixed these in the applied patch but I guess they slipped by
Diffstat (limited to 'vis-lua.c')
-rw-r--r--vis-lua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vis-lua.c b/vis-lua.c
index 164a967..acc48d2 100644
--- a/vis-lua.c
+++ b/vis-lua.c
@@ -3597,8 +3597,8 @@ void vis_lua_term_csi(Vis *vis, const long *csi) {
* @function process_response
* @tparam string name the name of process given to @{Vis:communicate}
* @tparam string response_type can be "STDOUT" or "STDERR" if new output was received in corresponding channel, "SIGNAL" if the process was terminated by a signal or "EXIT" when the process terminated normally
- * @tparam int the exit code number if response\_type is "EXIT", or the signal number if response\_type is "SIGNAL"
- * @tparam string buffer the available content sent by process
+ * @tparam int code the exit code number if response_type is "EXIT", or the signal number if response_type is "SIGNAL"
+ * @tparam string buffer the available content sent by the process
*/
void vis_lua_process_response(Vis *vis, const char *name,
char *buffer, size_t len, ResponseType rtype) {