diff --git a/src/Umbraco.Core/Cache/DictionaryCacheProdiverBase.cs b/src/Umbraco.Core/Cache/DictionaryCacheProviderBase.cs
similarity index 96%
rename from src/Umbraco.Core/Cache/DictionaryCacheProdiverBase.cs
rename to src/Umbraco.Core/Cache/DictionaryCacheProviderBase.cs
index dafc077b12..cec4c2ffa3 100644
--- a/src/Umbraco.Core/Cache/DictionaryCacheProdiverBase.cs
+++ b/src/Umbraco.Core/Cache/DictionaryCacheProviderBase.cs
@@ -6,7 +6,7 @@ using System.Threading;
namespace Umbraco.Core.Cache
{
- internal abstract class DictionaryCacheProdiverBase : ICacheProvider
+ internal abstract class DictionaryCacheProviderBase : ICacheProvider
{
protected static readonly ReaderWriterLockSlim Locker = new ReaderWriterLockSlim(LockRecursionPolicy.SupportsRecursion);
protected abstract DictionaryCacheWrapper DictionaryCache { get; }
diff --git a/src/Umbraco.Core/Cache/HttpRequestCacheProvider.cs b/src/Umbraco.Core/Cache/HttpRequestCacheProvider.cs
index 7eb45d093f..b71317b31d 100644
--- a/src/Umbraco.Core/Cache/HttpRequestCacheProvider.cs
+++ b/src/Umbraco.Core/Cache/HttpRequestCacheProvider.cs
@@ -10,7 +10,7 @@ namespace Umbraco.Core.Cache
///
/// A cache provider that caches items in the HttpContext.Items
///
- internal class HttpRequestCacheProvider : DictionaryCacheProdiverBase
+ internal class HttpRequestCacheProvider : DictionaryCacheProviderBase
{
private readonly Func _context;
diff --git a/src/Umbraco.Core/Cache/HttpRuntimeCacheProvider.cs b/src/Umbraco.Core/Cache/HttpRuntimeCacheProvider.cs
index 448f2ab4e4..c52d27f24a 100644
--- a/src/Umbraco.Core/Cache/HttpRuntimeCacheProvider.cs
+++ b/src/Umbraco.Core/Cache/HttpRuntimeCacheProvider.cs
@@ -12,7 +12,7 @@ namespace Umbraco.Core.Cache
///
/// A CacheProvider that wraps the logic of the HttpRuntime.Cache
///
- internal class HttpRuntimeCacheProvider : DictionaryCacheProdiverBase, IRuntimeCacheProvider
+ internal class HttpRuntimeCacheProvider : DictionaryCacheProviderBase, IRuntimeCacheProvider
{
private readonly System.Web.Caching.Cache _cache;
private readonly DictionaryCacheWrapper _wrapper;
diff --git a/src/Umbraco.Core/Umbraco.Core.csproj b/src/Umbraco.Core/Umbraco.Core.csproj
index 880673ef6e..1d68dd864e 100644
--- a/src/Umbraco.Core/Umbraco.Core.csproj
+++ b/src/Umbraco.Core/Umbraco.Core.csproj
@@ -137,7 +137,7 @@
-
+