Module Name:    src
Committed By:   pgoyette
Date:           Fri Jun 15 22:40:33 UTC 2018

Modified Files:
        src/share/man/man9: module.9

Log Message:
Add missing .Fn mark-up


To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 src/share/man/man9/module.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/module.9
diff -u src/share/man/man9/module.9:1.47 src/share/man/man9/module.9:1.48
--- src/share/man/man9/module.9:1.47	Fri Jun 15 15:14:15 2018
+++ src/share/man/man9/module.9	Fri Jun 15 22:40:33 2018
@@ -1,4 +1,4 @@
-.\"	$NetBSD: module.9,v 1.47 2018/06/15 15:14:15 wiz Exp $
+.\"	$NetBSD: module.9,v 1.48 2018/06/15 22:40:33 pgoyette Exp $
 .\"
 .\" Copyright (c) 2010 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -27,7 +27,7 @@
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.
 .\"
-.Dd June 3, 2018
+.Dd June 16, 2018
 .Dt MODULE 9
 .Os
 .Sh NAME
@@ -492,25 +492,25 @@ The
 argument should be the return value from the previous
 .Fn module_register_callbacks
 call.
-.It module_specific_key_create "specificdata_key_t *keyp" \
+.It Fn module_specific_key_create "specificdata_key_t *keyp" \
 "specificdata_dtor_t dtor"
 Creates a new specificdata_key for use within the
 .Nm
 domain.
 The key identifier is returned in
 .Fa keyp .
-.It module_specific_key_delete "specificdata_key_t key"
+.It Fn module_specific_key_delete "specificdata_key_t key"
 Deletes the specified specificdata_key
 .Fa key
 from the
 .Nm
 domain.
-.It module_getspecific "module_t *mod" "specificdata_key_t key"
+.It Fn module_getspecific "module_t *mod" "specificdata_key_t key"
 Retrieves the value associated with
 .Fa key
 from module
 .Fa mod .
-.It module_setspecific "module_t *mod" "specificdata_key_t key" "void *data"
+.It Fn module_setspecific "module_t *mod" "specificdata_key_t key" "void *data"
 Stores
 .Fa data
 as the value associated with

Reply via email to