Skip to content

Commit db6ca7f

Browse files
committed
even more formatting
1 parent 9a3e7dd commit db6ca7f

1 file changed

Lines changed: 8 additions & 9 deletions

File tree

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,11 @@ javac org\json\*.java
3636
jar cf json-java.jar org/json/*.class
3737
````
3838

39-
*Compile a program that uses the jar (see below example code)*
39+
*Compile a program that uses the jar (see example code below)*
4040
````
4141
javac -cp .;json-java.jar Test.java
4242
````
43-
44-
*Excecute the Test file*
45-
````
46-
java -cp .;json-java.jar Test
47-
````
48-
49-
43+
5044
*Test file contents*
5145

5246
````
@@ -59,6 +53,11 @@ public class Test {
5953
}
6054
````
6155

56+
*Excecute the Test file*
57+
````
58+
java -cp .;json-java.jar Test
59+
````
60+
6261
*Expected output*
6362

6463
````
@@ -69,7 +68,7 @@ public class Test {
6968
*You can only run the unit tests with Maven or Gradlew.*
7069

7170

72-
#Files#
71+
# Files
7372

7473
**JSONObject.java**: The `JSONObject` can parse text from a `String` or a `JSONTokener`
7574
to produce a map-like object. The object provides methods for manipulating its

0 commit comments

Comments
 (0)