From aeeef0a3da348462adf5c4ba4ede19e850c28e70 Mon Sep 17 00:00:00 2001 From: "bruno cuconato (@odanoburu)" Date: Wed, 13 Nov 2024 10:39:06 -0300 Subject: [PATCH] improve doc writing --- lark/visitors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lark/visitors.py b/lark/visitors.py index ae79a14b..b6db3ea0 100644 --- a/lark/visitors.py +++ b/lark/visitors.py @@ -523,7 +523,7 @@ def v_args(inline: bool = False, meta: bool = False, tree: bool = False, wrapper Parameters: inline (bool, optional): Children are provided as ``*args`` instead of a list argument (not recommended for very long lists). - meta (bool, optional): Provides two arguments: ``meta`` and ``children`` (instead of just the latter); ``meta`` is only available for external transformers (i.e., those not supplied as ``Lark``'s ``transformer`` parameter). + meta (bool, optional): Provides two arguments: ``meta`` and ``children`` (instead of just the latter); ``meta`` isn't available for transformers supplied to Lark using the ``transformer`` parameter (aka internal transformers). tree (bool, optional): Provides the entire tree as the argument, instead of the children. wrapper (function, optional): Provide a function to decorate all methods.