changeset 25473:6ade61b852eb

cosmetics: spelling fixes
author diego
date Sat, 22 Dec 2007 17:00:43 +0000
parents ace1b77375bd
children 39031de3757e
files liba52/compare.c
diffstat 1 files changed, 7 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/liba52/compare.c	Sat Dec 22 16:23:42 2007 +0000
+++ b/liba52/compare.c	Sat Dec 22 17:00:43 2007 +0000
@@ -1,10 +1,10 @@
-// File written by Michael Niedermayer and its under GPL
-// simple file compare program, it finds the number of rounding errors 
-// and dies if there is a larger error ( ABS(a-b)>1 )
+// File written by Michael Niedermayer and it is under GPL.
+// Simple file compare program, it finds the number of rounding errors
+// and dies if there is too large an error ( ABS(a-b)>1 ).
 
 #include <stdio.h>
 
-// FIXME no checks but its just for debuging so who cares ;)
+// FIXME: No checks but it is just for debugging so who cares ;)
 
 int main(int argc, char **argv)
 {
@@ -40,7 +40,7 @@
 		if(d<0) d=-d; // ABS
 		if(d>1)
 		{
-			printf("FATAL error, too large differnce found (%d)!\n", d);
+			printf("FATAL error, too large a difference found (%d)!\n", d);
 			exit(1);
 		}
 		
@@ -52,4 +52,5 @@
 	
 	printf("%d (+/-1)differences found\n", dif);
 	exit(0);
-}
\ No newline at end of file
+}
+