From e1854a84ad9fb9b70e1b9ca134d93251ec9a0070 Mon Sep 17 00:00:00 2001 From: Ceri Davies Date: Sun, 18 Feb 2007 19:48:59 +0000 Subject: Correct typos containing my login name (plus one more in expr.y). Found courtesy of a recursive grep in the wrong directory. --- bin/expr/expr.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/expr') diff --git a/bin/expr/expr.y b/bin/expr/expr.y index 787cd85dfbbc..356bac294d62 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); -- cgit v1.2.3