From 4f9d6f42f9eff59e188753358d69ae397400a2d1 Mon Sep 17 00:00:00 2001 From: xhaggi Date: Tue, 17 Oct 2023 09:01:23 +0200 Subject: [PATCH] Fix javadoc.io links in README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 87aed4c..01b0119 100644 --- a/README.md +++ b/README.md @@ -63,9 +63,9 @@ public String htmxRequest(){ ``` In addition, if you want to restrict the invocation of a controller method to a -specific triggering element, you can set [HxRequest#value](https://javadoc.io/static/io.github.wimdeblauwe/htmx-spring-boot/3.0.0/io/github/wimdeblauwe/htmx/spring/boot/mvc/HxRequest.html#value()) -to the ID or name of the element. If you want to be explicit use [HxRequest#triggerId](https://javadoc.io/static/io.github.wimdeblauwe/htmx-spring-boot/3.0.0/io/github/wimdeblauwe/htmx/spring/boot/mvc/HxRequest.html#triggerId()) -or [HxRequest#triggerName](https://javadoc.io/static/io.github.wimdeblauwe/htmx-spring-boot/3.0.0/io/github/wimdeblauwe/htmx/spring/boot/mvc/HxRequest.html#triggerName()) +specific triggering element, you can set [HxRequest#value](https://javadoc.io/doc/io.github.wimdeblauwe/htmx-spring-boot/latest/io/github/wimdeblauwe/htmx/spring/boot/mvc/HxRequest.html#value()) +to the ID or name of the element. If you want to be explicit use [HxRequest#triggerId](https://javadoc.io/doc/io.github.wimdeblauwe/htmx-spring-boot/latest/io/github/wimdeblauwe/htmx/spring/boot/mvc/HxRequest.html#triggerId()) +or [HxRequest#triggerName](https://javadoc.io/doc/io.github.wimdeblauwe/htmx-spring-boot/latest/io/github/wimdeblauwe/htmx/spring/boot/mvc/HxRequest.html#triggerName()) ```java @HxRequest("my-element") @@ -75,7 +75,7 @@ public String htmxRequest(){ } ``` If you want to restrict the invocation of a controller method to having a specific target element defined, -use [HxRequest#target](https://javadoc.io/static/io.github.wimdeblauwe/htmx-spring-boot/3.0.0/io/github/wimdeblauwe/htmx/spring/boot/mvc/HxRequest.html#target()) +use [HxRequest#target](https://javadoc.io/doc/io.github.wimdeblauwe/htmx-spring-boot/latest/io/github/wimdeblauwe/htmx/spring/boot/mvc/HxRequest.html#target()) ```java @HxRequest(target = "my-target")