Index: src/AST/Print.cpp
===================================================================
--- src/AST/Print.cpp	(revision 3cc11113e36bd5d3d127b0782777b020f59fc62e)
+++ src/AST/Print.cpp	(revision 03cdad65eb2b3bca310b5c87b7dacccd8553e117)
@@ -5,5 +5,5 @@
 // file "LICENCE" distributed with Cforall.
 //
-// Print.cpp --
+// Print.cpp -- Print an AST (or sub-tree) to a stream.
 //
 // Author           : Thierry Delisle
Index: src/AST/Print.hpp
===================================================================
--- src/AST/Print.hpp	(revision 3cc11113e36bd5d3d127b0782777b020f59fc62e)
+++ src/AST/Print.hpp	(revision 03cdad65eb2b3bca310b5c87b7dacccd8553e117)
@@ -5,5 +5,5 @@
 // file "LICENCE" distributed with Cforall.
 //
-// Print.hpp --
+// Print.hpp -- Print an AST (or sub-tree) to a stream.
 //
 // Author           : Thierry Delisle
@@ -35,11 +35,11 @@
 template< typename Coll >
 void printAll( std::ostream & os, const Coll & c, Indenter indent = {} ) {
-    for ( const auto & i : c ) {
-        if ( ! i ) continue;
-        
-        os << indent;
-        print( os, i, indent );
-        os << std::endl;
-    }
+	for ( const auto & i : c ) {
+		if ( ! i ) continue;
+
+		os << indent;
+		print( os, i, indent );
+		os << std::endl;
+	}
 }
 
