summaryrefslogtreecommitdiff
path: root/lib/libc/string
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1994-01-10 23:58:48 +0000
committerjtc <jtc@NetBSD.org>1994-01-10 23:58:48 +0000
commit62c2139aff5418d693178dfb194f79e066c0f7a7 (patch)
tree6ae9291b0ff2e35bd5d4ab806d4efe5678e4ffa9 /lib/libc/string
parent558be1794ad24241468897c7089dd2106a5e353c (diff)
Fix spelling errors.
Diffstat (limited to 'lib/libc/string')
-rw-r--r--lib/libc/string/ffs.34
-rw-r--r--lib/libc/string/strchr.34
-rw-r--r--lib/libc/string/strerror.34
-rw-r--r--lib/libc/string/strmode.34
-rw-r--r--lib/libc/string/strsep.34
5 files changed, 10 insertions, 10 deletions
diff --git a/lib/libc/string/ffs.3 b/lib/libc/string/ffs.3
index ea2c9ccb5a9..6f9e57bd1ae 100644
--- a/lib/libc/string/ffs.3
+++ b/lib/libc/string/ffs.3
@@ -32,7 +32,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)ffs.3 5.3 (Berkeley) 4/19/91
-.\" $Id: ffs.3,v 1.2 1993/08/01 07:44:03 mycroft Exp $
+.\" $Id: ffs.3,v 1.3 1994/01/10 23:58:48 jtc Exp $
.\"
.Dd April 19, 1991
.Dt FFS 3
@@ -47,7 +47,7 @@
.Sh DESCRIPTION
The
.Fn ffs
-fucntion
+function
finds the first bit set in
.Fa value
and returns the index of that bit.
diff --git a/lib/libc/string/strchr.3 b/lib/libc/string/strchr.3
index d4cda49a430..7bd3b1b023d 100644
--- a/lib/libc/string/strchr.3
+++ b/lib/libc/string/strchr.3
@@ -34,7 +34,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)strchr.3 5.4 (Berkeley) 6/29/91
-.\" $Id: strchr.3,v 1.2 1993/08/01 07:43:53 mycroft Exp $
+.\" $Id: strchr.3,v 1.3 1994/01/10 23:58:54 jtc Exp $
.\"
.Dd June 29, 1991
.Dt STRCHR 3
@@ -49,7 +49,7 @@
.Sh DESCRIPTION
The
.Fn strchr
-function locates the first occurence of
+function locates the first occurrence of
.Ar c
in the string pointed to by
.Ar s .
diff --git a/lib/libc/string/strerror.3 b/lib/libc/string/strerror.3
index 6b8752a654e..97bfde45e89 100644
--- a/lib/libc/string/strerror.3
+++ b/lib/libc/string/strerror.3
@@ -34,7 +34,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)strerror.3 6.9 (Berkeley) 6/29/91
-.\" $Id: strerror.3,v 1.1 1993/10/07 19:27:52 jtc Exp $
+.\" $Id: strerror.3,v 1.2 1994/01/10 23:58:57 jtc Exp $
.\"
.Dd June 29, 1991
.Dt STRERROR 3
@@ -49,7 +49,7 @@
.Sh DESCRIPTION
The
.Fn strerror
-function returns a pointer to the language-dependant error message string
+function returns a pointer to the language-dependent error message string
affiliated with an error number.
.Pp
The array pointed to is not to be modified by the program, but may be
diff --git a/lib/libc/string/strmode.3 b/lib/libc/string/strmode.3
index 843ff6edcd0..4f5d23e66ce 100644
--- a/lib/libc/string/strmode.3
+++ b/lib/libc/string/strmode.3
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)strmode.3 5.4 (Berkeley) 7/31/91
-.\" $Id: strmode.3,v 1.2 1993/08/01 07:43:44 mycroft Exp $
+.\" $Id: strmode.3,v 1.3 1994/01/10 23:59:00 jtc Exp $
.\"
.Dd July 31, 1991
.Dt STRMODE 3
@@ -84,7 +84,7 @@ third for the ``other'', or default, set of users.
.Pp
Permission checking is done as specifically as possible.
If read permission is denied to the owner of a file in the first set
-of permssions, the owner of the file will not be able to read the file.
+of permissions, the owner of the file will not be able to read the file.
This is true even if the owner is in the file's group and the group
permissions allow reading or the ``other'' permissions allow reading.
.Pp
diff --git a/lib/libc/string/strsep.3 b/lib/libc/string/strsep.3
index 8a2bdbcc70e..c0b478eac15 100644
--- a/lib/libc/string/strsep.3
+++ b/lib/libc/string/strsep.3
@@ -32,7 +32,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)strsep.3 5.3 (Berkeley) 4/19/91
-.\" $Id: strsep.3,v 1.2 1993/08/01 07:43:41 mycroft Exp $
+.\" $Id: strsep.3,v 1.3 1994/01/10 23:59:03 jtc Exp $
.\"
.Dd April 19, 1991
.Dt STRSEP 3
@@ -49,7 +49,7 @@ The
.Fn strsep
locates in the null-terminated string at
.Fa *stringp
-the first occurence of any character in
+the first occurrence of any character in
.Fa delim
and replaces this with a
.Ql \e0 ,