diff --git a/src/Umbraco.Core/Cache/DictionaryCacheProdiverBase.cs b/src/Umbraco.Core/Cache/DictionaryCacheProviderBase.cs
similarity index 99%
rename from src/Umbraco.Core/Cache/DictionaryCacheProdiverBase.cs
rename to src/Umbraco.Core/Cache/DictionaryCacheProviderBase.cs
index c1a4d17592..e38dee57c4 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 26c6dc0af8..d9f037d264 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 9838f8d1e6..2647e6920f 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 8498e39e4d..a50b483d73 100644
--- a/src/Umbraco.Core/Umbraco.Core.csproj
+++ b/src/Umbraco.Core/Umbraco.Core.csproj
@@ -116,7 +116,7 @@
-
+