Index: src/Concurrency/Actors.cpp
===================================================================
--- src/Concurrency/Actors.cpp	(revision 231e1aeb7d370181fff51663e6d7a8de028ccb56)
+++ src/Concurrency/Actors.cpp	(revision 046ba23776f868f7505bc5e1c9097e898a6df4d4)
@@ -229,5 +229,5 @@
                     return receiver;
                 }
-            */ // C_TODO: update this with new no alloc version
+            */ 
             CompoundStmt * sendBody = new CompoundStmt( decl->location );
 
@@ -259,5 +259,5 @@
             ));
 
-            // Function type is: Allocation (*)( actor &, messsage & )
+            // Function type is: Allocation (*)( actor &, message & )
             FunctionType * genericReceive = new FunctionType();
             genericReceive->params.push_back( new ReferenceType( new StructInstType( *actorDecl ) ) );
@@ -265,5 +265,5 @@
             genericReceive->returns.push_back( new EnumInstType( *allocationDecl ) );
 
-            // Generates: Allocation (*fn)( actor &, messsage & ) = (Allocation (*)( actor &, messsage & ))my_work_fn;
+            // Generates: Allocation (*fn)( actor &, message & ) = (Allocation (*)( actor &, message & ))my_work_fn;
             // More readable synonymous code: 
             //     typedef Allocation (*__receive_fn)(actor &, message &);
