Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
SentryMan committed Dec 6, 2024
1 parent c106a09 commit 3ac10c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions avaje-jex/src/main/java/io/avaje/jex/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
*
* <pre>{@code
* final Jex.Server app = Jex.create()
* .routing(routing -> routing
* .get("/", ctx -> ctx.text("hello world"))
* .get("/one", ctx -> ctx.text("one"))
* .get("/", ctx -> ctx.text("hello world"))
* .get("/one", ctx -> ctx.text("one"))
* .port(8080)
* .start();
*
Expand Down
5 changes: 2 additions & 3 deletions avaje-jex/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
*
* <pre>{@code
* final Jex.Server app = Jex.create()
* .routing(routing -> routing
* .get("/", ctx -> ctx.text("hello world"))
* .get("/one", ctx -> ctx.text("one"))
* .get("/", ctx -> ctx.text("hello world"))
* .get("/one", ctx -> ctx.text("one"))
* .port(8080)
* .start();
*
Expand Down

0 comments on commit 3ac10c6

Please sign in to comment.