summaryrefslogtreecommitdiffstats
path: root/bin/expr
diff options
context:
space:
mode:
authorceri <ceri@FreeBSD.org>2007-02-18 19:48:59 +0000
committerceri <ceri@FreeBSD.org>2007-02-18 19:48:59 +0000
commit0eef1e3be23346f8c6488f1f70c563796d9d2d90 (patch)
treef7f07cdeae4a9fb508d70e44fb82eec9c4af4fd1 /bin/expr
parentdd00b51193e5fd7907d9489e1101de77530d8580 (diff)
downloadFreeBSD-src-0eef1e3be23346f8c6488f1f70c563796d9d2d90.zip
FreeBSD-src-0eef1e3be23346f8c6488f1f70c563796d9d2d90.tar.gz
Correct typos containing my login name (plus one more in expr.y).
Found courtesy of a recursive grep in the wrong directory.
Diffstat (limited to 'bin/expr')
-rw-r--r--bin/expr/expr.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/expr/expr.y b/bin/expr/expr.y
index 787cd85..356bac2 100644
--- a/bin/expr/expr.y
+++ b/bin/expr/expr.y
@@ -539,7 +539,7 @@ chk_times(intmax_t a, intmax_t b, intmax_t r)
/* special case: first operand is 0, no overflow possible */
if (a == 0)
return 0;
- /* cerify that result of division matches second operand */
+ /* verify that result of division matches second operand */
if (r / a != b)
return 1;
return 0;
@@ -637,7 +637,7 @@ op_colon(struct val *a, struct val *b)
int eval;
struct val *v;
- /* coerce to both arguments to strings */
+ /* coerce both arguments to strings */
to_string(a);
to_string(b);
OpenPOWER on IntegriCloud