Module Name: src
Committed By: wiz
Date: Sun Apr 16 06:34:05 UTC 2017
Modified Files:
src/share/man/man9: klua_mod_register.9
Log Message:
More wording and whitespace.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/share/man/man9/klua_mod_register.9
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/man/man9/klua_mod_register.9
diff -u src/share/man/man9/klua_mod_register.9:1.4 src/share/man/man9/klua_mod_register.9:1.5
--- src/share/man/man9/klua_mod_register.9:1.4 Sat Apr 15 18:03:02 2017
+++ src/share/man/man9/klua_mod_register.9 Sun Apr 16 06:34:05 2017
@@ -1,4 +1,4 @@
-.\" $NetBSD: klua_mod_register.9,v 1.4 2017/04/15 18:03:02 sevan Exp $
+.\" $NetBSD: klua_mod_register.9,v 1.5 2017/04/16 06:34:05 wiz Exp $
.\"
.\" Copyright (c) 2015 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -65,7 +65,7 @@ element in the standard Lua way.
.Ft refcount
protects the module from being unloaded whilst still in use.
The last parameter,
-.Ft mod_next,
+.Ft mod_next ,
is used for the standard container
.Xr LIST 3 .
.Pp
@@ -75,7 +75,7 @@ function registers a new function which
.Xr lua 9
device and Lua code using the
.Dv require
-directive.
+directive.
The
.Dv require
directive can be called from
@@ -91,10 +91,10 @@ defined with the appropriate standard Lu
Once registered, a C function can be unregistered with the
.Fn klua_mod_unregister
function.
-This function takes as its parameter, the unique literal identifier of the
+This function takes as its parameter the unique literal identifier of the
extending module.
.Sh EXAMPLES
-A set of example modules are available in the
+A set of example modules is available in the
.Pa src/sys/modules/examples
directory hierarchy.
.Sh SEE ALSO