update some javadoc

This commit is contained in:
John J. Aylward 2020-07-27 11:54:20 -04:00
parent f37c2d67c5
commit 3c9573cc3d

View File

@ -1242,12 +1242,12 @@ public class JSONArray implements Iterable<Object> {
* Put an array's elements in to the JSONArray.
*
* @param array
* Array. If the parameter passed is null, or not an array, an
* Array. If the parameter passed is null, or not an array or Iterable, an
* exception will be thrown.
* @return this.
*
* @throws JSONException
* If not an array or if an array value is non-finite number.
* If not an array, JSONArray, Iterable or if an value is non-finite number.
* @throws NullPointerException
* Thrown if the array parameter is null.
*/