From be3f64c52dd3c456c1675155ff3a0f8f37f2cfcb Mon Sep 17 00:00:00 2001 From: Pranav K Date: Fri, 6 Feb 2015 05:58:55 -0800 Subject: [PATCH] Change comment to fix policheck --- src/Microsoft.AspNet.Mvc.Razor/Compilation/CompilerCache.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Mvc.Razor/Compilation/CompilerCache.cs b/src/Microsoft.AspNet.Mvc.Razor/Compilation/CompilerCache.cs index 0c3ab8b8a6..2c9a8d89ac 100644 --- a/src/Microsoft.AspNet.Mvc.Razor/Compilation/CompilerCache.cs +++ b/src/Microsoft.AspNet.Mvc.Razor/Compilation/CompilerCache.cs @@ -152,7 +152,7 @@ namespace Microsoft.AspNet.Mvc.Razor StringComparison.Ordinal)) { // Cache hit, but we need to update the entry. - // Assigning to LastModified and IsValidatedPreCompiled are atomic operations and will result in safe races + // Assigning to LastModified and IsValidatedPreCompiled are atomic operations and will result in safe race // if the entry is being concurrently read or updated. cacheEntry.LastModified = fileInfo.LastModified; cacheEntry.IsValidatedPreCompiled = true;