From 8d3b66fb52fc5a609ef9879794fac19374526726 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sun, 2 Aug 2020 22:22:45 +0200 Subject: [PATCH] Reflow comment --- src/ast.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ast.cpp b/src/ast.cpp index 2d82c60ca..ee881dd72 100644 --- a/src/ast.cpp +++ b/src/ast.cpp @@ -848,8 +848,7 @@ class ast_t::populator_t { case parse_keyword_t::kw_and: case parse_keyword_t::kw_or: { // Check that the argument to and/or is a string that's not help. Otherwise it's - // either 'and - // --help' or a naked 'and', and not part of this list. + // either 'and --help' or a naked 'and', and not part of this list. const auto &nexttok = peek_token(1); return nexttok.type == parse_token_type_t::string && !nexttok.is_help_argument; }