Skip to content

Commit d5f5d45

Browse files
committed
Fix README
1 parent 3c59a5d commit d5f5d45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ app.listen(); // Port 80 is default
2222
When you create an new Express instance you can add an additional host name for example, your local network:
2323
```java
2424
// Will bind the server to your ip-adress
25-
Express app = new Express(Utils.getYourIp());
25+
Express app = new Express(Utils.getYourIp());
2626
```
2727
Default is localhost, so you can access, without setting the hostname, only from your local pc.
2828

@@ -203,7 +203,7 @@ app.post("/register", (req, res) -> {
203203

204204
# HTTP - Main Classes
205205
## Express
206-
This class represents the entire HTTP-Server:
206+
This class represents the entire HTTP-Server, the available methods are:
207207
```java
208208
app.get(String context, HttpRequest handler); // Add an GET request handler
209209
app.post(String context, HttpRequest handler); // Add an POST request handler

0 commit comments

Comments
 (0)