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); }