summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonald Lee <dlqs@gmx.com>2021-08-10 07:28:29 +0800
committerDonald Lee <dlqs@gmx.com>2021-08-10 07:35:32 +0800
commit5141fd7f8e034081f3e1a2f391dd43d664c0412c (patch)
tree4e28c20169ef6f3c6fcfcc975dfaa4ff6a8f543b
parentc42f38b8dfb3c1b65adca95a69099581917c69ec (diff)
doc: fix unrelated typo
Signed-off-by: Donald Lee <dlqs@gmx.com>
-rw-r--r--doc/developer/scripting.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/developer/scripting.rst b/doc/developer/scripting.rst
index f0502697c5..202f0036f8 100644
--- a/doc/developer/scripting.rst
+++ b/doc/developer/scripting.rst
@@ -398,7 +398,7 @@ Again, for ``struct prefix *``:
{
lua_getfield(L, idx, "network");
(void)str2prefix(lua_tostring(L, -1), prefix);
- /* pop the netork string */
+ /* pop the network string */
lua_pop(L, 1);
/* pop the prefix table */
lua_pop(L, 1);