Index: libcfa/src/parseconfig.cfa
===================================================================
--- libcfa/src/parseconfig.cfa	(revision 692db7918b09199f7a46298e99ec0f5a5cb48ce3)
+++ libcfa/src/parseconfig.cfa	(revision 32913bc9451fc38056750b9db2b756428232f176)
@@ -9,4 +9,5 @@
 
 
+// TODO: Add names of missing config entries to exception (see further below)
 static vtable(Missing_Config_Entries) Missing_Config_Entries_vt;
 
@@ -113,5 +114,5 @@
 } // comments
 
-// Parse configuration from a file formatted in shell style
+// Parse configuration from a file formatted in tabular (CS 343) style
 KVPairs * parse_tabular_config_format( const char * config_file, size_t num_entries ) {
 	// TODO: Change this to a unique_ptr when we fully support returning them (move semantics)
@@ -126,5 +127,5 @@
 
 		while () {									// parameter names can appear in any order
-		  	// Must add check to see if already read in a key-value pair,
+		  	// NOTE: Must add check to see if already read in value for this key,
 			// once we switch to using hash table as intermediate storage
 		  if ( comments( in, key ) ) break;			// eof ?
