From 475a16b3d44ebfe52f5a65aa6cecbfca9933bd34 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Wed, 14 Apr 2021 02:13:28 -0400 Subject: [PATCH] CLI2: Fix docstring for desugarFilterPlainArgs Desugaring is applied also for tokens of Lexer::type::identifier, make sure the docstring correctly documents that. --- src/CLI2.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index f8031bf04..25291107f 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -1882,7 +1882,8 @@ void CLI2::lexFilterArgs () // - task ... argX candidate argY // Where: // - neither argX nor argY are an operator, except (, ), and, or, xor -// - candidate is Lexer::Type::word +// - candidate is one of: Lexer::Type::word +// Lexer::Type::identifier // void CLI2::desugarFilterPlainArgs () {