Skip to content

Commit 1b5a59f

Browse files
whitespace
1 parent dd38c41 commit 1b5a59f

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

README

+11-11
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ douglas@crockford.com
99
JSON is a light-weight, language independent, data interchange format.
1010
See http://www.JSON.org/
1111

12-
The files in this package implement JSON encoders/decoders in Java.
13-
It also includes the capability to convert between JSON and XML, HTTP
14-
headers, Cookies, and CDL.
12+
The files in this package implement JSON encoders/decoders in Java.
13+
It also includes the capability to convert between JSON and XML, HTTP
14+
headers, Cookies, and CDL.
1515

1616
This is a reference implementation. There is a large number of JSON packages
17-
in Java. Perhaps someday the Java community will standardize on one. Until
17+
in Java. Perhaps someday the Java community will standardize on one. Until
1818
then, choose carefully.
1919

20-
The license includes this restriction: "The software shall be used for good,
20+
The license includes this restriction: "The software shall be used for good,
2121
not evil." If your conscience cannot live with that, then choose a different
2222
package.
2323

@@ -29,7 +29,7 @@ to produce a map-like object. The object provides methods for manipulating its
2929
contents, and for producing a JSON compliant object serialization.
3030

3131
JSONArray.java: The JSONObject can parse text from a String or a JSONTokener
32-
to produce a vector-like object. The object provides methods for manipulating
32+
to produce a vector-like object. The object provides methods for manipulating
3333
its contents, and for producing a JSON compliant array serialization.
3434

3535
JSONTokener.java: The JSONTokener breaks a text into a sequence of individual
@@ -39,15 +39,15 @@ JSONException.java: The JSONException is the standard exception type thrown
3939
by this package.
4040

4141

42-
JSONString.java: The JSONString interface requires a toJSONString method,
42+
JSONString.java: The JSONString interface requires a toJSONString method,
4343
allowing an object to provide its own serialization.
4444

45-
JSONStringer.java: The JSONStringer provides a convenient facility for
45+
JSONStringer.java: The JSONStringer provides a convenient facility for
4646
building JSON strings.
4747

48-
JSONWriter.java: The JSONWriter provides a convenient facility for building
48+
JSONWriter.java: The JSONWriter provides a convenient facility for building
4949
JSON text through a writer.
50-
50+
5151

5252
CDL.java: CDL provides support for converting between JSON and comma
5353
delimited lists.
@@ -65,4 +65,4 @@ XML.java: XML provides support for converting between JSON and XML.
6565

6666
JSONML.java: JSONML provides support for converting between JSONML and XML.
6767

68-
XMLTokener.java: XMLTokener extends JSONTokener for parsing XML text.
68+
XMLTokener.java: XMLTokener extends JSONTokener for parsing XML text.

0 commit comments

Comments
 (0)