Skip to content

Commit e69b549

Browse files
committed
fixing links in the handler/access-log doc
Signed-off-by: Lewis Birks <22620804+lewisbirks@users.noreply.github.com>
1 parent d797ef4 commit e69b549

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/asciidoc/handlers/access-log.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
=== AccessLogHandler
22

3-
The javadoc:AccessLogHandler[] logs incoming requests using the https://en.wikipedia.org/wiki/Common_Log_Format[NCSA format] (a.k.a common log format).
3+
The javadoc:handler.AccessLogHandler[] logs incoming requests using the https://en.wikipedia.org/wiki/Common_Log_Format[NCSA format] (a.k.a common log format).
44

55
.Usage
66
[source, java, role = "primary"]
77
----
88
import io.jooby.Jooby;
9-
import io.jooby.AccessLogHandler;
9+
import io.jooby.handler.AccessLogHandler;
1010
...
1111
{
1212
@@ -21,7 +21,7 @@ import io.jooby.AccessLogHandler;
2121
.Kotlin
2222
[source, kotlin, role = "secondary"]
2323
----
24-
import io.jooby.AccessLogHandler
24+
import io.jooby.handler.AccessLogHandler
2525
...
2626
{
2727
use(AccessLogHandler()) <1>
@@ -50,8 +50,8 @@ Message is represented by:
5050

5151
Extra request or response headers can be appended at the end using the available methods:
5252

53-
- javadoc:AccessLogHandler[requestHeader, java.lang.String...]
54-
- javadoc:AccessLogHandler[responseHeader, java.lang.String...]
53+
- javadoc:handler.AccessLogHandler[requestHeader, java.lang.String...]
54+
- javadoc:handler.AccessLogHandler[responseHeader, java.lang.String...]
5555

5656
[TIP]
5757
====

0 commit comments

Comments
 (0)