JSONStringer.java: fix max nesting level in javadoc

This commit is contained in:
anton0xf 2021-03-14 22:45:38 +05:00 committed by GitHub
parent 2630676f36
commit 29103e3228
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ import java.io.StringWriter;
* <p>
* The first method called must be <code>array</code> or <code>object</code>.
* There are no methods for adding commas or colons. JSONStringer adds them for
* you. Objects and arrays can be nested up to 20 levels deep.
* you. Objects and arrays can be nested up to 200 levels deep.
* <p>
* This can sometimes be easier than using a JSONObject to build a string.
* @author JSON.org