Skip to content

Commit

Permalink
Fix Typo in Oidc Logout Docs
Browse files Browse the repository at this point in the history
Closes gh-15198
  • Loading branch information
jzheaux committed Jun 6, 2024
1 parent f231ea2 commit 0532659
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/modules/ROOT/pages/servlet/oauth2/login/logout.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ Java::
[source=java,role="primary"]
----
@Bean
public HttpSessionEventListener sessionEventListener() {
return new HttpSessionEventListener();
public HttpSessionEventPublisher sessionEventPublisher() {
return new HttpSessionEventPublisher();
}
----
Expand All @@ -189,8 +189,8 @@ Kotlin::
[source=kotlin,role="secondary"]
----
@Bean
open fun sessionEventListener(): HttpSessionEventListener {
return HttpSessionEventListener()
open fun sessionEventPublisher(): HttpSessionEventPublisher {
return HttpSessionEventPublisher()
}
----
======
Expand Down

0 comments on commit 0532659

Please sign in to comment.