Skip to content

Commit

Permalink
Improve documentation consistency #5369
Browse files Browse the repository at this point in the history
  • Loading branch information
fredriksvendsen authored and vietj committed Oct 24, 2024
1 parent 78e2176 commit 88f9b06
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions vertx-core/src/main/java/examples/CoreExamples.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ public void example3(HttpServerRequest request) {
public void example4(HttpServerRequest request) {
HttpServerResponse response = request.response();
response.putHeader("Content-Type", "text/plain");
response.write("some text");
response.end();
response.end("some text");
}

public void example5(Vertx vertx) {
Expand Down

0 comments on commit 88f9b06

Please sign in to comment.