Module Name: src
Committed By: dholland
Date: Wed Mar 23 18:10:25 UTC 2011
Modified Files:
src/bin/expr: expr.1
Log Message:
minor usage nit
To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 src/bin/expr/expr.1
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/bin/expr/expr.1
diff -u src/bin/expr/expr.1:1.30 src/bin/expr/expr.1:1.31
--- src/bin/expr/expr.1:1.30 Mon May 24 00:29:30 2010
+++ src/bin/expr/expr.1 Wed Mar 23 18:10:25 2011
@@ -1,4 +1,4 @@
-.\" $NetBSD: expr.1,v 1.30 2010/05/24 00:29:30 joerg Exp $
+.\" $NetBSD: expr.1,v 1.31 2011/03/23 18:10:25 dholland Exp $
.\"
.\" Copyright (c) 2000,2003 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -148,7 +148,7 @@
The following example adds one to the variable a.
.Dl a=`expr $a + 1`
.It
-The following example returns zero, due to deduction having higher precedence
+The following example returns zero, due to subtraction having higher precedence
than '\*[Am]' operator.
.Dl expr 1 '\*[Am]' 1 - 1
.It