Fix typos and formatting in documentation
This commit is contained in:
parent
ce018ff003
commit
148e7843bf
|
@ -240,7 +240,7 @@ static RoleHierarchy roleHierarchy() {
|
|||
|
||||
Kotlin::
|
||||
+
|
||||
[source,java,role="secondary"]
|
||||
[source,kotlin,role="secondary"]
|
||||
----
|
||||
companion object {
|
||||
@Bean
|
||||
|
|
|
@ -87,7 +87,7 @@ RelyingPartyRegistration relyingPartyRegistration = RelyingPartyRegistration.wit
|
|||
|
||||
Kotlin::
|
||||
+
|
||||
[source,java,role="secondary"]
|
||||
[source,kotlin,role="secondary"]
|
||||
----
|
||||
var relyingPartyRegistration: RelyingPartyRegistration =
|
||||
RelyingPartyRegistration.withRegistrationId("okta")
|
||||
|
@ -96,7 +96,7 @@ var relyingPartyRegistration: RelyingPartyRegistration =
|
|||
// ...
|
||||
.wantAuthnRequestsSigned(false)
|
||||
}
|
||||
.build();
|
||||
.build()
|
||||
----
|
||||
======
|
||||
|
||||
|
@ -141,7 +141,7 @@ var relyingPartyRegistration: RelyingPartyRegistration =
|
|||
)
|
||||
}
|
||||
}
|
||||
.build();
|
||||
.build()
|
||||
----
|
||||
======
|
||||
|
||||
|
|
|
@ -1000,12 +1000,12 @@ Collection<RelyingPartyRegistration> registrations = RelyingPartyRegistrations
|
|||
.entityId("https://example.org/saml2/sp")
|
||||
.build()
|
||||
)
|
||||
.collect(Collectors.toList()));
|
||||
.collect(Collectors.toList());
|
||||
----
|
||||
|
||||
Kotlin::
|
||||
+
|
||||
[source,java,role="secondary"]
|
||||
[source,kotlin,role="secondary"]
|
||||
----
|
||||
var registrations: Collection<RelyingPartyRegistration> = RelyingPartyRegistrations
|
||||
.collectionFromMetadataLocation("https://example.org/saml2/idp/metadata.xml")
|
||||
|
@ -1015,7 +1015,7 @@ var registrations: Collection<RelyingPartyRegistration> = RelyingPartyRegistrati
|
|||
.assertionConsumerServiceLocation("{baseUrl}/login/saml2/sso")
|
||||
.build()
|
||||
}
|
||||
.collect(Collectors.toList()));
|
||||
.collect(Collectors.toList())
|
||||
----
|
||||
======
|
||||
|
||||
|
|
Loading…
Reference in New Issue