diff --git a/src/OpenIddict.Server/OpenIddictServerOptions.cs b/src/OpenIddict.Server/OpenIddictServerOptions.cs
index c8a7aa8e..33143da3 100644
--- a/src/OpenIddict.Server/OpenIddictServerOptions.cs
+++ b/src/OpenIddict.Server/OpenIddictServerOptions.cs
@@ -36,10 +36,12 @@ namespace OpenIddict.Server
///
///
/// Note: OpenIddict automatically sorts the credentials based on the following algorithm:
- /// • Symmetric keys are always preferred when they can be used for the operation (e.g token encryption).
- /// • X.509 keys are always preferred to non-X.509 asymmetric keys.
- /// • X.509 keys with the furthest expiration date are preferred.
- /// • X.509 keys whose backing certificate is not yet valid are never preferred.
+ ///
+ /// - Symmetric keys are always preferred when they can be used for the operation (e.g token encryption).
+ /// - X.509 keys are always preferred to non-X.509 asymmetric keys.
+ /// - X.509 keys with the furthest expiration date are preferred.
+ /// - X.509 keys whose backing certificate is not yet valid are never preferred.
+ ///
///
public List EncryptionCredentials { get; } = new List();
@@ -52,10 +54,12 @@ namespace OpenIddict.Server
///
///
/// Note: OpenIddict automatically sorts the credentials based on the following algorithm:
- /// • Symmetric keys are always preferred when they can be used for the operation (e.g token signing).
- /// • X.509 keys are always preferred to non-X.509 asymmetric keys.
- /// • X.509 keys with the furthest expiration date are preferred.
- /// • X.509 keys whose backing certificate is not yet valid are never preferred.
+ ///
+ /// - Symmetric keys are always preferred when they can be used for the operation (e.g token signing).
+ /// - X.509 keys are always preferred to non-X.509 asymmetric keys.
+ /// - X.509 keys with the furthest expiration date are preferred.
+ /// - X.509 keys whose backing certificate is not yet valid are never preferred.
+ ///
///
public List SigningCredentials { get; } = new List();
diff --git a/src/OpenIddict.Validation/OpenIddictValidationOptions.cs b/src/OpenIddict.Validation/OpenIddictValidationOptions.cs
index d56e0f35..dc862013 100644
--- a/src/OpenIddict.Validation/OpenIddictValidationOptions.cs
+++ b/src/OpenIddict.Validation/OpenIddictValidationOptions.cs
@@ -28,10 +28,12 @@ namespace OpenIddict.Validation
///
///
/// Note: OpenIddict automatically sorts the credentials based on the following algorithm:
- /// • Symmetric keys are always preferred when they can be used for the operation (e.g token decryption).
- /// • X.509 keys are always preferred to non-X.509 asymmetric keys.
- /// • X.509 keys with the furthest expiration date are preferred.
- /// • X.509 keys whose backing certificate is not yet valid are never preferred.
+ ///
+ /// - Symmetric keys are always preferred when they can be used for the operation (e.g token encryption).
+ /// - X.509 keys are always preferred to non-X.509 asymmetric keys.
+ /// - X.509 keys with the furthest expiration date are preferred.
+ /// - X.509 keys whose backing certificate is not yet valid are never preferred.
+ ///
///
public List EncryptionCredentials { get; } = new List();