summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorbrucec <brucec@FreeBSD.org>2010-08-28 16:32:01 +0000
committerbrucec <brucec@FreeBSD.org>2010-08-28 16:32:01 +0000
commit76d72447281953457a8a3a319fdc80070bc5152c (patch)
tree63ce23a3afd66a826b4c91820bd78ab505f92089 /lib
parent7ce28b7066d5299134f831d522470bcecba74fce (diff)
downloadFreeBSD-src-76d72447281953457a8a3a319fdc80070bc5152c.zip
FreeBSD-src-76d72447281953457a8a3a319fdc80070bc5152c.tar.gz
Fix incorrect usage of 'assure' and 'insure'.
Approved by: rrs (mentor)
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/net/ethers.32
-rw-r--r--lib/libc/net/eui64.32
-rw-r--r--lib/libc/net/sctp_send.34
-rw-r--r--lib/libc/net/sctp_sendmsg.34
-rw-r--r--lib/libc/stdio/printf.32
-rw-r--r--lib/libc/stdlib/malloc.34
-rw-r--r--lib/libc/sys/semop.22
-rw-r--r--lib/libipx/ipx.32
8 files changed, 11 insertions, 11 deletions
diff --git a/lib/libc/net/ethers.3 b/lib/libc/net/ethers.3
index 3148b6c..c8aa51a 100644
--- a/lib/libc/net/ethers.3
+++ b/lib/libc/net/ethers.3
@@ -189,7 +189,7 @@ unable to find a match in the
.Pa /etc/ethers
database.
.Sh NOTES
-The user must insure that the hostname strings passed to the
+The user must ensure that the hostname strings passed to the
.Fn ether_line ,
.Fn ether_ntohost
and
diff --git a/lib/libc/net/eui64.3 b/lib/libc/net/eui64.3
index 3000c74..7cc5718 100644
--- a/lib/libc/net/eui64.3
+++ b/lib/libc/net/eui64.3
@@ -189,7 +189,7 @@ unable to find a match in the
.Pa /etc/eui64
database.
.Sh NOTES
-The user must insure that the hostname strings passed to the
+The user must ensure that the hostname strings passed to the
.\" .Fn eui64_line ,
.Fn eui64_ntohost
and
diff --git a/lib/libc/net/sctp_send.3 b/lib/libc/net/sctp_send.3
index 9acb616..8d860df 100644
--- a/lib/libc/net/sctp_send.3
+++ b/lib/libc/net/sctp_send.3
@@ -191,7 +191,7 @@ If that many milliseconds elapse
and the peer has not acknowledged the data, the data will be
skipped and no longer transmitted.
Note that this policy does
-not even assure that the data will ever be sent.
+not even ensure that the data will ever be sent.
In times of a congestion
with large amounts of data being queued, the
.Fa sinfo->sinfo_timetolive
@@ -218,7 +218,7 @@ policy transforms the
.Fa sinfo->sinfo_timetolive
into a number of retransmissions to allow.
This policy
-always assures that at a minimum one send attempt is
+always ensures that at a minimum one send attempt is
made of the data.
After which no more than
.Fa sinfo->sinfo_timetolive
diff --git a/lib/libc/net/sctp_sendmsg.3 b/lib/libc/net/sctp_sendmsg.3
index ddd88b4..1015558 100644
--- a/lib/libc/net/sctp_sendmsg.3
+++ b/lib/libc/net/sctp_sendmsg.3
@@ -203,7 +203,7 @@ If that many milliseconds elapse
and the peer has not acknowledged the data, the data will be
skipped and no longer transmitted.
Note that this policy does
-not even assure that the data will ever be sent.
+not even ensure that the data will ever be sent.
In times of a congestion
with large amounts of data being queued, the
.Fa timetolive
@@ -230,7 +230,7 @@ policy transforms the
.Fa timetolive
into a number of retransmissions to allow.
This policy
-always assures that at a minimum one send attempt is
+always ensures that at a minimum one send attempt is
made of the data.
After which no more than
.Fa timetolive
diff --git a/lib/libc/stdio/printf.3 b/lib/libc/stdio/printf.3
index 90a8ed8..a0d2613 100644
--- a/lib/libc/stdio/printf.3
+++ b/lib/libc/stdio/printf.3
@@ -849,7 +849,7 @@ and
.Fn vsprintf
assume an infinitely long string,
callers must be careful not to overflow the actual space;
-this is often hard to assure.
+this is often hard to ensure.
For safety, programmers should use the
.Fn snprintf
interface instead.
diff --git a/lib/libc/stdlib/malloc.3 b/lib/libc/stdlib/malloc.3
index 2f21b6a..90781a1 100644
--- a/lib/libc/stdlib/malloc.3
+++ b/lib/libc/stdlib/malloc.3
@@ -266,7 +266,7 @@ options are enabled, the allocator prefers anonymous mappings over the DSS,
but allocation only fails if memory cannot be acquired via either method.
If neither option is enabled, then the
.Dq M
-option is implicitly enabled in order to assure that there is a method for
+option is implicitly enabled in order to ensure that there is a method for
acquiring memory.
.It N
Double/halve the number of arenas.
@@ -437,7 +437,7 @@ rounded up to the nearest multiple of the chunk size.
.Pp
Allocations are packed tightly together, which can be an issue for
multi-threaded applications.
-If you need to assure that allocations do not suffer from cacheline sharing,
+If you need to ensure that allocations do not suffer from cacheline sharing,
round your allocation requests up to the nearest multiple of the cacheline
size.
.Sh DEBUGGING MALLOC PROBLEMS
diff --git a/lib/libc/sys/semop.2 b/lib/libc/sys/semop.2
index 86200ee..a08f65e 100644
--- a/lib/libc/sys/semop.2
+++ b/lib/libc/sys/semop.2
@@ -222,7 +222,7 @@ When a process
exits, either voluntarily or involuntarily, the adjust on exit value
for each semaphore is added to the semaphore's value.
This can
-be used to insure that a resource is released if a process terminates
+be used to ensure that a resource is released if a process terminates
unexpectedly.
.Sh RETURN VALUES
.Rv -std semop
diff --git a/lib/libipx/ipx.3 b/lib/libipx/ipx.3
index b38683d..ab6de2d 100644
--- a/lib/libipx/ipx.3
+++ b/lib/libipx/ipx.3
@@ -70,7 +70,7 @@ trailing
.Ql H
appended.
.Pp
-An effort has been made to insure that
+An effort has been made to ensure that
.Fn ipx_addr
be compatible with most formats in common use.
It will first separate an address into 1 to 3 fields using a single delimiter
OpenPOWER on IntegriCloud