From b3578b0cb8f6b43f299a0978d11cc0caedecdb2a Mon Sep 17 00:00:00 2001 From: Andy Butland Date: Mon, 15 Mar 2021 17:13:12 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Mole --- src/Umbraco.Core/Services/ICacheInstructionService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Core/Services/ICacheInstructionService.cs b/src/Umbraco.Core/Services/ICacheInstructionService.cs index 41e04e06d0..cca80a0b0e 100644 --- a/src/Umbraco.Core/Services/ICacheInstructionService.cs +++ b/src/Umbraco.Core/Services/ICacheInstructionService.cs @@ -29,7 +29,7 @@ namespace Umbraco.Cms.Core.Services void DeliverInstructions(IEnumerable instructions, string localIdentity); /// - /// Creates one or more cache instruction records base on the configured batch size from a set of individual instructions and saves them. + /// Creates one or more cache instruction records based on the configured batch size from a set of individual instructions and saves them. /// void DeliverInstructionsInBatches(IEnumerable instructions, string localIdentity); @@ -37,7 +37,7 @@ namespace Umbraco.Cms.Core.Services /// Processes and then prunes pending database cache instructions. /// /// Flag indicating if process is shutting now and operations should exit. - /// Local local identity of the executing AppDomain. + /// Local identity of the executing AppDomain. /// Date of last prune operation. CacheInstructionServiceProcessInstructionsResult ProcessInstructions(bool released, string localIdentity, DateTime lastPruned); }