Index: doc/theses/mike_brooks_MMath/programs/hello-accordion.cfa
===================================================================
--- doc/theses/mike_brooks_MMath/programs/hello-accordion.cfa	(revision 80e83b6c70ab292c8a3da65fc7273607cea987b3)
+++ doc/theses/mike_brooks_MMath/programs/hello-accordion.cfa	(revision 98da9e8a8116a73a7f9e787b4a3e90bf3052edc6)
@@ -29,12 +29,12 @@
 
 forall( [C], [S] )
-int getPref( @School( C, S ) & school@, int is, int pref ) {
+int getPref( @School( C, S ) & school@,
+				 int is, int pref ) {
 	for ( ic; C ) {
-		if ( pref == @school.preferences@[ic][is] ) return ic; $\C{// offset calculation implicit}$
+		if ( pref == @school.preferences@[ic][is] )
+			return ic; // offset calculation implicit
 	}
 	assert( false );	// must find a match
 }
-
-
 
 
