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;