diff --git a/src/parsers/and.c b/src/parsers/and.c
index e07bc9fcd36c91005d01eeef8d554a8202dce9ae..9a6d3254bef23594133a57c52432e856329b25ca 100644
--- a/src/parsers/and.c
+++ b/src/parsers/and.c
@@ -12,9 +12,9 @@ static HParseResult *parse_and(void* env, HParseState* state) {
 static const HParserVtable and_vt = {
   .parse = parse_and,
   .isValidRegular = h_false, /* TODO: strictly speaking this should be regular,
-				but it will be a huge amount of work and difficult
-				to get right, so we're leaving it for a future
-				revision. --mlp, 18/12/12 */
+				but it will be a huge amount of work and
+				difficult to get right, so we're leaving it for
+				a future revision. --mlp, 18/12/12 */
   .isValidCF = h_false,      /* despite TODO above, this remains false. */
   .compile_to_rvm = h_not_regular,
   .higher = true,