Skip to content

Commit 4e1b9ed

Browse files
committed
fixing links in the handler/trace doc
Signed-off-by: Lewis Birks <22620804+lewisbirks@users.noreply.github.com>
1 parent 35c6647 commit 4e1b9ed

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/asciidoc/handlers/trace.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ Jooby doesn't support `HTTP Trace` requests by default. To support them you have
55
- Use the built-in `TraceHandler`
66
- Write your own trace handler
77
8-
The javadoc:TraceHandler[] supports `TRACE` requests over existing handlers.
8+
The javadoc:handler.TraceHandler[] supports `TRACE` requests over existing handlers.
99

1010
.Head Example
1111
[source, java, role = "primary"]
1212
----
1313
import io.jooby.Jooby;
14-
import io.jooby.TraceHandler;
14+
import io.jooby.handler.TraceHandler;
1515
...
1616
{
1717
@@ -27,7 +27,7 @@ import io.jooby.TraceHandler;
2727
[source, kotlin, role = "secondary"]
2828
----
2929
import io.jooby.Jooby
30-
import io.jooby.TraceHandler
30+
import io.jooby.handler.TraceHandler
3131
...
3232
{
3333
use(TraceHandler()) <1>

0 commit comments

Comments
 (0)