From bec4953a97287069a3dcc929214e2b00b6efcc81 Mon Sep 17 00:00:00 2001 From: Florian Schroedl Date: Wed, 4 May 2022 17:00:00 +0200 Subject: [PATCH] Commentary --- src/parser/builder_api.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/builder_api.nim b/src/parser/builder_api.nim index d0c35a7..78f2094 100644 --- a/src/parser/builder_api.nim +++ b/src/parser/builder_api.nim @@ -17,7 +17,7 @@ proc tryParseBuild*[T]( stopAtParserFn = newline, concatFn = concat[T], ): BuilderResult[T] = - ## Parse remaining text in `builder` by going checking in the `builderFns` list for a sucessful `parserFn`. + ## Parse text in `builder` by checking the `builderFns` list for a sucessful `parserFn`. ## The `ok` `parserFn` result will be merged into the `Builder[T].tree` by using the `concatFn`. ## Otherwise continue taking any character until the `stopAtParserFn` condition is found. ## Any non-matching tokens will be converted using the `defaultBuilderFn`.