From: Alexandre Iooss Date: Mon, 14 Jul 2025 06:53:32 +0000 (+0200) Subject: doc/lua: fix typo in stream toserver and toclient X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=57e0ff0ee0b2308c34820e956458a3b0a4b7e366;p=thirdparty%2Fsuricata.git doc/lua: fix typo in stream toserver and toclient --- diff --git a/doc/userguide/lua/lua-functions.rst b/doc/userguide/lua/lua-functions.rst index a518ec512d..d9f9449aaa 100644 --- a/doc/userguide/lua/lua-functions.rst +++ b/doc/userguide/lua/lua-functions.rst @@ -119,8 +119,8 @@ function within a ``stream`` subtable:: local close = args["stream"]["close"] -- To server? - local ts = args["stream"]["toserver"] + local ts = args["stream"]["to_server"] -- To client? - local tc = args["stream"]["toclient"] + local tc = args["stream"]["to_client"] end