Skip to content

Commit 6aed1cf

Browse files
authored
fix typo
1 parent b75da07 commit 6aed1cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/json/JSONArray.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1694,7 +1694,7 @@ public String toString() {
16941694
*/
16951695
@SuppressWarnings("resource")
16961696
public String toString(int indentFactor) throws JSONException {
1697-
// each value requires a comma, so multiply the count my 2
1697+
// each value requires a comma, so multiply the count by 2
16981698
// We don't want to oversize the initial capacity
16991699
int initialSize = myArrayList.size() * 2;
17001700
Writer sw = new StringBuilderWriter(Math.max(initialSize, 16));

0 commit comments

Comments
 (0)