Skip to content

Commit fbad2d0

Browse files
authored
Merge pull request stleary#392 from philippgille/patch-1
Remove wrong apostrophe
2 parents ca45b02 + 1571988 commit fbad2d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JSONObject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2212,7 +2212,7 @@ static final Writer writeValue(Writer writer, Object value,
22122212
// not all Numbers may match actual JSON Numbers. i.e. fractions or Imaginary
22132213
final String numberAsString = numberToString((Number) value);
22142214
try {
2215-
// Use the BigDecimal constructor for it's parser to validate the format.
2215+
// Use the BigDecimal constructor for its parser to validate the format.
22162216
@SuppressWarnings("unused")
22172217
BigDecimal testNum = new BigDecimal(numberAsString);
22182218
// Close enough to a JSON number that we will use it unquoted

0 commit comments

Comments
 (0)