diff --git a/src/Mvc/Mvc.Core/src/Filters/MiddlewareFilterBuilder.cs b/src/Mvc/Mvc.Core/src/Filters/MiddlewareFilterBuilder.cs index de689d3e2c..6ca1eb2d54 100644 --- a/src/Mvc/Mvc.Core/src/Filters/MiddlewareFilterBuilder.cs +++ b/src/Mvc/Mvc.Core/src/Filters/MiddlewareFilterBuilder.cs @@ -14,7 +14,7 @@ namespace Microsoft.AspNetCore.Mvc.Filters /// internal class MiddlewareFilterBuilder { - // 'GetOrAdd' call on the dictionary is not thread safe and we might end up creating the pipeline more + // 'GetOrAdd' call on the dictionary is not thread safe and we might end up creating the pipeline more than // once. To prevent this Lazy<> is used. In the worst case multiple Lazy<> objects are created for multiple // threads but only one of the objects succeeds in creating a pipeline. private readonly ConcurrentDictionary> _pipelinesCache