From 9faf29a65789fe261b0179a533cee21d618c5678 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Thu, 2 Apr 2026 20:49:14 -0500 Subject: [PATCH] docs: fix typo and formatting in ISecureConfigBuilder XML comments --- .../Configuration/ISecureConfigBuilder.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/StevanFreeborn.Extensions.Configuration.Secure/Configuration/ISecureConfigBuilder.cs b/src/StevanFreeborn.Extensions.Configuration.Secure/Configuration/ISecureConfigBuilder.cs index d8ff72d..b3621a5 100644 --- a/src/StevanFreeborn.Extensions.Configuration.Secure/Configuration/ISecureConfigBuilder.cs +++ b/src/StevanFreeborn.Extensions.Configuration.Secure/Configuration/ISecureConfigBuilder.cs @@ -53,7 +53,6 @@ public interface ISecureConfigBuilder /// The current instance for method chaining. ISecureConfigBuilder WithMachineIdKey(); - /// /// Configures a custom encryption key provider. /// @@ -69,7 +68,7 @@ public interface ISecureConfigBuilder ISecureConfigBuilder WithLoggerFactory(ILoggerFactory loggerFactory); /// - /// Configures AES crypto provider for encryption and decryption + /// Configures AES crypto provider for encryption and decryption. /// /// The current instance for method chaining. ISecureConfigBuilder WithAesCryptoProvider(); @@ -77,7 +76,7 @@ public interface ISecureConfigBuilder /// /// Configures the factory function that will be used to create the crypto provider for encryption and decryption /// - /// The crypto provider factor to use for encryption and decryption operations. + /// The crypto provider factory to use for encryption and decryption operations. /// The current instance for method chaining. ISecureConfigBuilder WithCustomCryptoProvider(Func cryptoProviderFactory); } \ No newline at end of file