doc: Fix index type for json_array_foreach()

This commit is contained in:
Petri Lehtinen 2013-09-19 21:26:41 +03:00
parent e39112b29c
commit 9f9c9fe410

View File

@ -510,7 +510,7 @@ in an array.
Iterate over every element of ``array``, running the block
of code that follows each time with the proper values set to
variables ``index`` and ``value``, of types :type:`int` and
variables ``index`` and ``value``, of types :type:`size_t` and
:type:`json_t *` respectively. Example::
/* array is a JSON array */