Skip to content

Commit cb0aa7c

Browse files
authored
(Minor) Update rest-client.adoc
Minor correction to the `ResteasyReactiveClientRequestFilter` code snippet - corrected the type of the parameter `requestContext` in the method `filter`.
1 parent f7d0970 commit cb0aa7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/main/asciidoc/rest-client.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1334,7 +1334,7 @@ Alternatively, you can implement the `ResteasyReactiveClientRequestFilter` inter
13341334
public class TestClientRequestFilter implements ResteasyReactiveClientRequestFilter {
13351335
13361336
@Override
1337-
public void filter(ResteasyReactiveClientRequestFilter requestContext) {
1337+
public void filter(ResteasyReactiveClientRequestContext requestContext) {
13381338
Providers providers = requestContext.getProviders();
13391339
// ...
13401340
}

0 commit comments

Comments
 (0)