diff --git a/src/Libraries/Nop.Core/Caching/IShortTermCacheManager.cs b/src/Libraries/Nop.Core/Caching/IShortTermCacheManager.cs index b36407d8023..1963ca50921 100644 --- a/src/Libraries/Nop.Core/Caching/IShortTermCacheManager.cs +++ b/src/Libraries/Nop.Core/Caching/IShortTermCacheManager.cs @@ -23,7 +23,7 @@ public partial interface IShortTermCacheManager : ICacheKeyService /// Get a cached item. If it's not in the cache yet, then load and cache it /// </summary> /// <typeparam name="T">Type of cached item</typeparam> - /// /// <param name="acquire">Function to load item if it's not in the cache yet</param> + /// <param name="acquire">Function to load item if it's not in the cache yet</param> /// <param name="cacheKey">Initial cache key</param> /// <param name="cacheKeyParameters">Parameters to create cache key</param> /// <returns> @@ -31,4 +31,4 @@ public partial interface IShortTermCacheManager : ICacheKeyService /// The task result contains the cached value associated with the specified key /// </returns> Task<T> GetAsync<T>(Func<Task<T>> acquire, CacheKey cacheKey, params object[] cacheKeyParameters); -} \ No newline at end of file +} diff --git a/src/Libraries/Nop.Core/ComponentModel/ReaderWriteLockDisposable.cs b/src/Libraries/Nop.Core/ComponentModel/ReaderWriteLockDisposable.cs index a15610d1a12..b8ca5bfcf9e 100644 --- a/src/Libraries/Nop.Core/ComponentModel/ReaderWriteLockDisposable.cs +++ b/src/Libraries/Nop.Core/ComponentModel/ReaderWriteLockDisposable.cs @@ -49,7 +49,7 @@ public ReaderWriteLockDisposable(ReaderWriterLockSlim rwLock, ReaderWriteLockTyp /// <summary> /// Protected implementation of Dispose pattern. /// </summary> - /// <param name="disposing">Specifies whether to disposing resources</param> + /// <param name="disposing">Specifies whether to dispose resources</param> protected virtual void Dispose(bool disposing) { if (_disposed) @@ -88,4 +88,4 @@ public void Dispose() } #endregion -} \ No newline at end of file +} diff --git a/src/Libraries/Nop.Core/Configuration/AzureBlobConfig.cs b/src/Libraries/Nop.Core/Configuration/AzureBlobConfig.cs index 5a6d77f4094..e29298f858b 100644 --- a/src/Libraries/Nop.Core/Configuration/AzureBlobConfig.cs +++ b/src/Libraries/Nop.Core/Configuration/AzureBlobConfig.cs @@ -33,7 +33,7 @@ public partial class AzureBlobConfig : IConfig public bool StoreDataProtectionKeys { get; protected set; } = false; /// <summary> - /// Gets or sets the Azure container name for storing Data Prtection Keys (this container should be separate from the container used for media and should be Private) + /// Gets or sets the Azure container name for storing Data Protection Keys (this container should be separate from the container used for media and should be Private) /// </summary> public string DataProtectionKeysContainerName { get; protected set; } = string.Empty; @@ -53,4 +53,4 @@ public partial class AzureBlobConfig : IConfig /// </summary> [JsonIgnore] public bool DataProtectionKeysEncryptWithVault => !string.IsNullOrEmpty(DataProtectionKeysVaultId); -} \ No newline at end of file +} diff --git a/src/Libraries/Nop.Data/DataProviders/MsSqlDataProvider.cs b/src/Libraries/Nop.Data/DataProviders/MsSqlDataProvider.cs index 08d604f3de1..cdbd4c8cf56 100644 --- a/src/Libraries/Nop.Data/DataProviders/MsSqlDataProvider.cs +++ b/src/Libraries/Nop.Data/DataProviders/MsSqlDataProvider.cs @@ -58,7 +58,7 @@ public void CreateDatabase(string collation, int triesToConnect = 10) //gets database name var databaseName = builder.InitialCatalog; - //now create connection string to 'master' dabatase. It always exists. + //now create connection string to 'master' database. It always exists. builder.InitialCatalog = "master"; using (var connection = GetInternalDbConnection(builder.ConnectionString)) @@ -359,4 +359,4 @@ public override void UpdateEntities<TEntity>(IEnumerable<TEntity> entities) public virtual bool BackupSupported => true; #endregion -} \ No newline at end of file +}