[Midnightbsd-cvs] src: expr.y: Fix comments.

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sun Jun 29 23:07:46 EDT 2008


Log Message:
-----------
Fix comments.

Modified Files:
--------------
    src/bin/expr:
        expr.y (r1.2 -> r1.3)

-------------- next part --------------
Index: expr.y
===================================================================
RCS file: /home/cvs/src/bin/expr/expr.y,v
retrieving revision 1.2
retrieving revision 1.3
diff -L bin/expr/expr.y -L bin/expr/expr.y -u -r1.2 -r1.3
--- bin/expr/expr.y
+++ bin/expr/expr.y
@@ -540,7 +540,7 @@
 	/* 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;
@@ -638,7 +638,7 @@
 	int eval;
 	struct val *v;
 
-	/* coerce to both arguments to strings */
+	/* coerce both arguments to strings */
 	to_string(a);
 	to_string(b);
 


More information about the Midnightbsd-cvs mailing list