changeset 25:9749109b3198

Fixed spelling error in parser error message.
author William Morgan <wbm25+rhopehg@drexel.edu>
date Thu, 25 Jun 2009 02:15:36 +0000
parents 8b2b3f4a2a58
children 0c9272a96b58
files parser.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/parser.c	Wed Jun 24 23:56:49 2009 -0400
+++ b/parser.c	Thu Jun 25 02:15:36 2009 +0000
@@ -703,7 +703,7 @@
 		if(worker_expr && num_inputs < expected_in)
 		{
 			if(block_attach)
-				printf("Warning: Worker %s is attached to block both explicityly and implicity (i.e. at least one input was stated as ~, but there are still unsatisfied inputs)\n", workername);
+				printf("Warning: Worker %s is attached to block both explicitly and implicitly (i.e. at least one input was stated as ~, but there are still unsatisfied inputs)\n", workername);
 			if(expected_in - num_inputs > 1)
 				printf("Warning: More than one input of worker %s implicitly tied to block (%d inputs implicitly tied)", workername, expected_in - num_inputs);
 			for(i = num_inputs; i < expected_in; ++i)