Skip to content

Commit b3068d9

Browse files
committed
Marking file and class names with single quotes
1 parent dba4afd commit b3068d9

1 file changed

Lines changed: 17 additions & 17 deletions

File tree

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,52 +20,52 @@ package.
2020
The package compiles on Java 1.6-1.8.
2121

2222

23-
JSONObject.java: The JSONObject can parse text from a String or a JSONTokener
23+
`JSONObject.java`: The `JSONObject` can parse text from a `String` or a `JSONTokener`
2424
to produce a map-like object. The object provides methods for manipulating its
2525
contents, and for producing a JSON compliant object serialization.
2626

27-
JSONArray.java: The JSONArray can parse text from a String or a JSONTokener
27+
`JSONArray.java`: The `JSONArray` can parse text from a String or a `JSONTokener`
2828
to produce a vector-like object. The object provides methods for manipulating
2929
its contents, and for producing a JSON compliant array serialization.
3030

31-
JSONTokener.java: The JSONTokener breaks a text into a sequence of individual
32-
tokens. It can be constructed from a String, Reader, or InputStream.
31+
`JSONTokener.java`: The `JSONTokener` breaks a text into a sequence of individual
32+
tokens. It can be constructed from a `String`, `Reader`, or `InputStream`.
3333

34-
JSONException.java: The JSONException is the standard exception type thrown
34+
`JSONException.java`: The `JSONException` is the standard exception type thrown
3535
by this package.
3636

37-
JSONPointer.java: Implementation of
37+
`JSONPointer.java`: Implementation of
3838
[JSON Pointer (RFC 6901)](https://tools.ietf.org/html/rfc6901). Supports
3939
JSON Pointers both in the form of string representation and URI fragment
4040
representation.
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.
5050

5151

52-
CDL.java: CDL provides support for converting between JSON and comma
52+
`CDL.java`: `CDL` provides support for converting between JSON and comma
5353
delimited lists.
5454

55-
Cookie.java: Cookie provides support for converting between JSON and cookies.
55+
`Cookie.java`: `Cookie` provides support for converting between JSON and cookies.
5656

57-
CookieList.java: CookieList provides support for converting between JSON and
57+
`CookieList.java`: `CookieList` provides support for converting between JSON and
5858
cookie lists.
5959

60-
HTTP.java: HTTP provides support for converting between JSON and HTTP headers.
60+
`HTTP.java`: `HTTP` provides support for converting between JSON and HTTP headers.
6161

62-
HTTPTokener.java: HTTPTokener extends JSONTokener for parsing HTTP headers.
62+
`HTTPTokener.java`: `HTTPTokener` extends `JSONTokener` for parsing HTTP headers.
6363

64-
XML.java: XML provides support for converting between JSON and XML.
64+
`XML.java`: `XML` provides support for converting between JSON and XML.
6565

66-
JSONML.java: JSONML provides support for converting between JSONML and XML.
66+
`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.
6969

7070
Unit tests are maintained in a separate project. Contributing developers can test
7171
JSON-java pull requests with the code in this project:

0 commit comments

Comments
 (0)