Index: doc/theses/colby_parsons_MMAth/text/CFA_concurrency.tex
===================================================================
--- doc/theses/colby_parsons_MMAth/text/CFA_concurrency.tex	(revision 9586d2224ca5cb624a7b876906418878ffde5625)
+++ doc/theses/colby_parsons_MMAth/text/CFA_concurrency.tex	(revision 4541b096d256e249330cbe69e0356e67e2935641)
@@ -19,10 +19,10 @@
 
 int main() {
-	processor p[2];					$\C{// add 2 processors = 3 total with starting processor}$
+	@processor@ p[2];				$\C{// add 2 processors = 3 total with starting processor}$
 	{
 		my_thread t[2], * t3 = new();	$\C{// create 3 user threads, running in main routine}$
 		... // execute concurrently
 		delete( t3 );				$\C{// wait for thread to end and deallocate}$
-	} // waits for threads to end and deallocate
+	} // wait for threads to end and deallocate
 }
 \end{cfa}
