Index: doc/theses/colby_parsons_MMAth/text/CFA_concurrency.tex
===================================================================
--- doc/theses/colby_parsons_MMAth/text/CFA_concurrency.tex	(revision deeda09e4da31bcb6a76ac4488cbe1aa05b02640)
+++ doc/theses/colby_parsons_MMAth/text/CFA_concurrency.tex	(revision bb7422a92c2e0bb9b901b7099d87e5736fed1d23)
@@ -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}
