Index: src/GenPoly/Box.cc
===================================================================
--- src/GenPoly/Box.cc	(revision 7fffb1b8979dbfa34830f820ec28933c8047b580)
+++ src/GenPoly/Box.cc	(revision 8c91088c3e562b46c9a7b971487a1d954e9f735a)
@@ -66,7 +66,8 @@
 		};
 
-		/// Adds layout-generation functions to polymorphic types
+		/// Adds layout-generation functions to polymorphic types.
 		class LayoutFunctionBuilder final : public WithDeclsToAdd, public WithVisitorRef<LayoutFunctionBuilder>, public WithShortCircuiting {
-			unsigned int functionNesting = 0;  // current level of nested functions
+			// Current level of nested functions:
+			unsigned int functionNesting = 0;
 		public:
 			void previsit( FunctionDecl *functionDecl );
@@ -75,5 +76,7 @@
 		};
 
-		/// Replaces polymorphic return types with out-parameters, replaces calls to polymorphic functions with adapter calls as needed, and adds appropriate type variables to the function call
+		/// Replaces polymorphic return types with out-parameters,
+		/// replaces calls to polymorphic functions with adapter calls,
+		/// and adds appropriate type variables to the function call.
 		class Pass1 final : public BoxPass, public WithConstTypeSubstitution, public WithStmtsToAdd, public WithGuards, public WithVisitorRef<Pass1>, public WithShortCircuiting {
 		  public:
@@ -146,5 +149,5 @@
 		};
 
-		/// Replaces member and size/align/offsetof expressions on polymorphic generic types with calculated expressions.
+		/// * Replaces member and size/align/offsetof expressions on polymorphic generic types with calculated expressions.
 		/// * Replaces member expressions for polymorphic types with calculated add-field-offset-and-dereference
 		/// * Calculates polymorphic offsetof expressions from offset array
@@ -199,5 +202,8 @@
 		};
 
-		/// Replaces initialization of polymorphic values with alloca, declaration of dtype/ftype with appropriate void expression, sizeof expressions of polymorphic types with the proper variable, and strips fields from generic struct declarations.
+		/// Replaces initialization of polymorphic values with alloca,
+		/// declaration of dtype/ftype with appropriate void expression,
+		/// sizeof expressions of polymorphic types with the proper variable,
+		/// and strips fields from generic struct declarations.
 		struct Pass3 final : public BoxPass, public WithGuards {
 			template< typename DeclClass >
