Index: doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/balance.cfa
===================================================================
--- doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/balance.cfa	(revision 1803d4daea73b18182327e284198d177f555c261)
+++ doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/balance.cfa	(revision 84334d08ce78b3d819996c317553544f9b5315a4)
@@ -31,5 +31,5 @@
 
 d_actor ** actor_arr;
-Allocation receive( d_actor & this, start_msg & msg ) with( this ) {
+allocation receive( d_actor & this, start_msg & msg ) with( this ) {
     for ( i; Set ) {
         *actor_arr[i + gstart] << shared_msg;
@@ -38,5 +38,5 @@
 }
 
-Allocation receive( d_actor & this, d_msg & msg ) with( this ) {
+allocation receive( d_actor & this, d_msg & msg ) with( this ) {
     if ( recs == rounds ) return Delete;
     if ( recs % Batch == 0 ) {
@@ -50,5 +50,5 @@
 }
 
-Allocation receive( filler & this, d_msg & msg ) { return Delete; }
+allocation receive( filler & this, d_msg & msg ) { return Delete; }
 
 int main( int argc, char * argv[] ) {
Index: doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/dynamic.cfa
===================================================================
--- doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/dynamic.cfa	(revision 1803d4daea73b18182327e284198d177f555c261)
+++ doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/dynamic.cfa	(revision 84334d08ce78b3d819996c317553544f9b5315a4)
@@ -24,5 +24,5 @@
 
 uint64_t start_time;
-Allocation receive( derived_actor & receiver, derived_msg & msg ) {
+allocation receive( derived_actor & receiver, derived_msg & msg ) {
     if ( msg.cnt >= Times ) {
         printf("%.2f\n", ((double)(bench_time() - start_time)) / ((double)Times) ); // ns
Index: doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/executor.cfa
===================================================================
--- doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/executor.cfa	(revision 1803d4daea73b18182327e284198d177f555c261)
+++ doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/executor.cfa	(revision 84334d08ce78b3d819996c317553544f9b5315a4)
@@ -25,5 +25,5 @@
 struct d_msg { inline message; } shared_msg;
 
-Allocation receive( d_actor & this, d_msg & msg ) with( this ) {
+allocation receive( d_actor & this, d_msg & msg ) with( this ) {
     if ( recs == rounds ) return Finished;
     if ( recs % Batch == 0 ) {
Index: doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/matrix.cfa
===================================================================
--- doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/matrix.cfa	(revision 1803d4daea73b18182327e284198d177f555c261)
+++ doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/matrix.cfa	(revision 84334d08ce78b3d819996c317553544f9b5315a4)
@@ -24,5 +24,5 @@
 }
 
-Allocation receive( derived_actor & receiver, derived_msg & msg ) {
+allocation receive( derived_actor & receiver, derived_msg & msg ) {
     for ( unsigned int i = 0; i < yc; i += 1 ) { // multiply X_row by Y_col and sum products
         msg.Z[i] = 0;
Index: doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/repeat.cfa
===================================================================
--- doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/repeat.cfa	(revision 1803d4daea73b18182327e284198d177f555c261)
+++ doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/repeat.cfa	(revision 84334d08ce78b3d819996c317553544f9b5315a4)
@@ -46,7 +46,7 @@
 
 Client * cl;
-Allocation receive( Server & this, IntMsg & msg ) { msg.val = 7; *cl << msg; return Nodelete; }
-Allocation receive( Server & this, CharMsg & msg ) { msg.val = 'x'; *cl << msg; return Nodelete; }
-Allocation receive( Server & this, StateMsg & msg ) { return Finished; }
+allocation receive( Server & this, IntMsg & msg ) { msg.val = 7; *cl << msg; return Nodelete; }
+allocation receive( Server & this, CharMsg & msg ) { msg.val = 'x'; *cl << msg; return Nodelete; }
+allocation receive( Server & this, StateMsg & msg ) { return Finished; }
 
 void terminateServers( Client & this ) with(this) {
@@ -56,5 +56,5 @@
 }
 
-Allocation reset( Client & this ) with(this) {
+allocation reset( Client & this ) with(this) {
     times += 1;
     if ( times == Times ) { terminateServers( this ); return Finished; }
@@ -64,5 +64,5 @@
 }
 
-Allocation process( Client & this ) with(this) {
+allocation process( Client & this ) with(this) {
     this.results++;
     if ( results == 2 * Messages ) { return reset( this ); }
@@ -70,7 +70,7 @@
 }
 
-Allocation receive( Client & this, IntMsg & msg ) { return process( this ); }
-Allocation receive( Client & this, CharMsg & msg ) { return process( this ); }
-Allocation receive( Client & this, StateMsg & msg ) with(this) {
+allocation receive( Client & this, IntMsg & msg ) { return process( this ); }
+allocation receive( Client & this, CharMsg & msg ) { return process( this ); }
+allocation receive( Client & this, StateMsg & msg ) with(this) {
     for ( i; Messages ) {
         servers[i] << intmsg[i];
Index: doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/static.cfa
===================================================================
--- doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/static.cfa	(revision 1803d4daea73b18182327e284198d177f555c261)
+++ doc/theses/colby_parsons_MMAth/benchmarks/actors/cfa/static.cfa	(revision 84334d08ce78b3d819996c317553544f9b5315a4)
@@ -23,5 +23,5 @@
 
 uint64_t start_time;
-Allocation receive( derived_actor & receiver, derived_msg & msg ) {
+allocation receive( derived_actor & receiver, derived_msg & msg ) {
     if ( msg.cnt >= Times ) {
         printf("%.2f\n", ((double)(bench_time() - start_time)) / ((double)Times) ); // ns
Index: doc/theses/colby_parsons_MMAth/code/basic_actor_example.cfa
===================================================================
--- doc/theses/colby_parsons_MMAth/code/basic_actor_example.cfa	(revision 1803d4daea73b18182327e284198d177f555c261)
+++ doc/theses/colby_parsons_MMAth/code/basic_actor_example.cfa	(revision 84334d08ce78b3d819996c317553544f9b5315a4)
@@ -19,5 +19,5 @@
 }
 
-Allocation receive( derived_actor & receiver, derived_msg & msg ) {
+allocation receive( derived_actor & receiver, derived_msg & msg ) {
     printf("The message contained the string: %s\n", msg.word);
     return Finished; // Return allocation status of Finished now that the actor is done work
