From c1f303cba7000d2e94d42e250232d7a40d46a556 Mon Sep 17 00:00:00 2001 From: Muhammad Rasyadi Bin Rabuan Date: Thu, 12 Jan 2017 13:32:35 +0800 Subject: [PATCH] Fix broken link anchor by moving the text into quote --- documentation/Sitecore Fundamentals/Caching/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/Sitecore Fundamentals/Caching/index.md b/documentation/Sitecore Fundamentals/Caching/index.md index cd6f0c1..fa1a81a 100644 --- a/documentation/Sitecore Fundamentals/Caching/index.md +++ b/documentation/Sitecore Fundamentals/Caching/index.md @@ -58,7 +58,7 @@ Caches can be created as needed in your code. * [Removing a Value from the Cache](#removing_a_value_from_the_cache) * [Clearing the Cache](#clearing_the_cache) -#### Creating the Cache +#### Creating the Cache Creating a cache consists of creating a new instance of `Sitecore.Caching.Cache`. When the instance is created the cache is automatically registered with the system. This means that Sitecore recognizes the cache and can control it. var mycache = new Sitecore.Caching.Cache("test cache", 1024);