Skip to content

Commit 3d34077

Browse files
committed
Update README.md
1 parent e3da057 commit 3d34077

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,15 @@ The inspector must be started using the following form:
88
new ist.meic.pa.Inspector().inspect(object)
99
```
1010

11-
This means that the class ```java ist.meic.pa.Inspector ``` has a construtor that does not
12-
accept arguments. The class also provides a method with the following signature:
13-
```java public void inspect(Object object); ```
11+
This means that the class `ist.meic.pa.Inspector` has a construtor that does not
12+
accept arguments. The class also provides a method with the following signature: ` public void inspect(Object object); `
1413

1514
As a result of calling the previous method, the inspector then presents all the relevant features of the object, namely:
1615
* The class of the object.
1716
* The name, type, and current value of each of the fields of the object.
1817
* Other features that you feel are important.
1918

20-
The inspector then enters a read-eval-print loop where it accepts commands from the user, executes the corresponding actions and prints the results. All interactions (both printing of the object features and reading of inspection commands) are done on ```java System.err ```.
19+
The inspector then enters a read-eval-print loop where it accepts commands from the user, executes the corresponding actions and prints the results. All interactions (both printing of the object features and reading of inspection commands) are done on `System.err`.
2120

2221
Important notes
2322
--------------

0 commit comments

Comments
 (0)