summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2004-08-25 22:00:00 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2004-08-25 22:00:00 +0000
commitec2199f5f4ddb7e2d1a8c7f5b9549eaa7653a09a (patch)
tree8a12a0e0ca2861948ca6c77db698696ec8f223f4 /usr.bin
parent1f755f5c3eadbc9cd7cb48cc9d4ccda2a64d5984 (diff)
typos from -f (PR #3907);
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/bc/bc.16
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/bc/bc.1 b/usr.bin/bc/bc.1
index 15a217a5dbf..018822e48c2 100644
--- a/usr.bin/bc/bc.1
+++ b/usr.bin/bc/bc.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: bc.1,v 1.16 2004/04/21 08:21:42 jmc Exp $
+.\" $OpenBSD: bc.1,v 1.17 2004/08/25 21:59:59 jmc Exp $
.\"
.\" Copyright (C) Caldera International Inc. 2001-2002.
.\" All rights reserved.
@@ -172,9 +172,9 @@ The boolean operators (!, && and ||) are non-portable extensions.
The boolean not
(!) operator has much lower precedence than the same operator in the
C language.
-This has the consquence that the expression
+This has the consequence that the expression
.Sy !a < b
-is interpeted as
+is interpreted as
.Sy !(a < b) .
Prudent programmers use parentheses when writing expressions involving
boolean operators.