From 0f2d73e4a36089a249d312a68cd623d6ceae47ca Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sun, 20 Dec 2020 13:36:56 -0800 Subject: [PATCH] Remove a stale comment --- src/parse_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse_util.h b/src/parse_util.h index c32e65cc8..17888367d 100644 --- a/src/parse_util.h +++ b/src/parse_util.h @@ -130,7 +130,7 @@ std::vector parse_util_compute_indents(const wcstring &src); /// Given a string, detect parse errors in it. If allow_incomplete is set, then if the string is /// incomplete (e.g. an unclosed quote), an error is not returned and the PARSER_TEST_INCOMPLETE bit /// is set in the return value. If allow_incomplete is not set, then incomplete strings result in an -/// error. If out_pstree is not NULL, the resulting tree is returned by reference. +/// error. parser_test_error_bits_t parse_util_detect_errors(const wcstring &buff_src, parse_error_list_t *out_errors = nullptr, bool allow_incomplete = false);