Module Name: src
Committed By: uwe
Date: Tue May 17 11:37:54 UTC 2022
Modified Files:
src/usr.sbin/makemandb: apropos.1
Log Message:
apropos(1): Use the official spelling for "SQLite".
While here, use .Bx to refer to 3BSD.
To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/usr.sbin/makemandb/apropos.1
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/makemandb/apropos.1
diff -u src/usr.sbin/makemandb/apropos.1:1.22 src/usr.sbin/makemandb/apropos.1:1.23
--- src/usr.sbin/makemandb/apropos.1:1.22 Tue May 17 11:31:14 2022
+++ src/usr.sbin/makemandb/apropos.1 Tue May 17 11:37:54 2022
@@ -1,4 +1,4 @@
-.\" $NetBSD: apropos.1,v 1.22 2022/05/17 11:31:14 uwe Exp $
+.\" $NetBSD: apropos.1,v 1.23 2022/05/17 11:37:54 uwe Exp $
.\"
.\" Copyright (c) 2011 Abhinav Upadhyay <[email protected]>
.\" All rights reserved.
@@ -47,7 +47,7 @@
The
.Nm
utility performs a full text search over the complete content of all man pages.
-It uses the FTS engine of Sqlite to perform the search.
+It uses the FTS engine of SQLite to perform the search.
The database is created with the help of the
.Xr makemandb 8
utility.
@@ -107,7 +107,7 @@ For single digit sections you can use ab
.Sh FILES
.Bl -hang -width /etc/man.conf -compact
.It Pa /etc/man.conf
-The location of the Sqlite FTS database can be configured using the
+The location of the SQLite FTS database can be configured using the
.Cd _mandb
tag.
.El
@@ -133,9 +133,10 @@ will be used.
.Sh HISTORY
The
.Nm
-command appeared in 3.0BSD.
+command appeared in
+.Bx 3 .
It was rewritten in
.Nx 6.0
-to support full text search using Sqlite.
+to support full text search using SQLite.
.Sh AUTHORS
.An Abhinav Upadhyay