This commit is contained in:
Dimitris Apostolou 2022-01-05 09:35:13 +02:00
parent 4fc7b3dc7c
commit a2341b5d1e
No known key found for this signature in database
GPG Key ID: 4B5D20E938204A8A

View File

@ -44,7 +44,7 @@ Constant.
!!! note
When a value is discarded by a callback function (see [`parser_callback_t`](parser_callback_t.md)) during parsing,
then it is removed when it is part of a structured value. For instance, if the second value of an array is discared,
then it is removed when it is part of a structured value. For instance, if the second value of an array is discarded,
instead of `#!json [null, discarded, false]`, the array `#!json [null, false]` is returned. Only if the top-level
value is discarded, the return value of the `parse` call is discarded.