Skip to content

Commit 5b845f2

Browse files
authored
Update README.md
New RFC8259, no changes to in-doc references.
1 parent 00e0e6c commit 5b845f2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ JSON in Java [package org.json]
33

44
[![Maven Central](https://img.shields.io/maven-central/v/org.json/json.svg)](https://mvnrepository.com/artifact/org.json/json)
55

6-
**[Click here if you just want the jar file.](http://central.maven.org/maven2/org/json/json/20180813/json-20180813.jar)**
6+
**[Click here if you just want the latest release jar file.](http://central.maven.org/maven2/org/json/json/20180813/json-20180813.jar)**
77

88
JSON is a light-weight, language independent, data interchange format.
99
See http://www.JSON.org/
@@ -88,15 +88,15 @@ https://github.com/stleary/JSON-Java-unit-test
8888

8989
Numeric types in this package comply with
9090
[ECMA-404: The JSON Data Interchange Format](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf) and
91-
[RFC 7159: The JavaScript Object Notation (JSON) Data Interchange Format](https://tools.ietf.org/html/rfc7159#section-6).
91+
[RFC 8259: The JavaScript Object Notation (JSON) Data Interchange Format](https://tools.ietf.org/html/rfc8259#section-6).
9292
This package fully supports `Integer`, `Long`, and `Double` Java types. Partial support
9393
for `BigInteger` and `BigDecimal` values in `JSONObject` and `JSONArray` objects is provided
9494
in the form of `get()`, `opt()`, and `put()` API methods.
9595

9696
Although 1.6 compatibility is currently supported, it is not a project goal and may be
9797
removed in some future release.
9898

99-
In compliance with RFC7159 page 10 section 9, the parser is more lax with what is valid
99+
In compliance with RFC8259 page 10 section 9, the parser is more lax with what is valid
100100
JSON than the Generator. For Example, the tab character (U+0009) is allowed when reading
101101
JSON Text strings, but when output by the Generator, tab is properly converted to \t in
102102
the string. Other instances may occur where reading invalid JSON text does not cause an

0 commit comments

Comments
 (0)