Skip to content

Commit b5e71fb

Browse files
authored
Update README.md
1 parent 7513d11 commit b5e71fb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ String data = socketReader.readStr(); // Read first string
2828

2929
## Getting started
3030

31-
The first set to getting started is to include the **fastjavaio.jar** to your project. If you're running your application on the command-line this can easily be done by adding the jar file to your classpath.
31+
The first step to getting started with the InputReader is to include the **fastjavaio.jar** to your project. If you're running your application on the command-line this can easily be done by adding the jar file to your CLASSPATH.
3232

3333
If you're using a unix like system try:
3434
```bash
35-
javac -cp .:fastjavaio.jar MyApp.java
36-
java -cp .:fastjavaio.jar MyApp
35+
javac -cp .:fastjavaio.jar MyApp.java # Compile application
36+
java -cp .:fastjavaio.jar MyApp # Run application
3737
```
3838

3939
If you're using windows try:
4040
```bash
41-
javac -cp .;fastjavaio.jar MyApp.java
42-
java -cp .;fastjavaio.jar MyApp
41+
javac -cp .;fastjavaio.jar MyApp.java # Compile application
42+
java -cp .;fastjavaio.jar MyApp # Run application
4343
```
4444

4545
To actually use the InputReader class within your application you need to import it from within the fastjavaio package:

0 commit comments

Comments
 (0)