We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b75da07 commit 6aed1cfCopy full SHA for 6aed1cf
src/main/java/org/json/JSONArray.java
@@ -1694,7 +1694,7 @@ public String toString() {
1694
*/
1695
@SuppressWarnings("resource")
1696
public String toString(int indentFactor) throws JSONException {
1697
- // each value requires a comma, so multiply the count my 2
+ // each value requires a comma, so multiply the count by 2
1698
// We don't want to oversize the initial capacity
1699
int initialSize = myArrayList.size() * 2;
1700
Writer sw = new StringBuilderWriter(Math.max(initialSize, 16));
0 commit comments