diff --git a/src/Features/CSharp/Portable/UseLocalFunction/CSharpUseLocalFunctionCodeFixProvider.cs b/src/Features/CSharp/Portable/UseLocalFunction/CSharpUseLocalFunctionCodeFixProvider.cs index ad924b957ccbac048431d6d4e449da2d2f7ba968..80ab1c155fa6410ee935dea361f5359ad28209bd 100644 --- a/src/Features/CSharp/Portable/UseLocalFunction/CSharpUseLocalFunctionCodeFixProvider.cs +++ b/src/Features/CSharp/Portable/UseLocalFunction/CSharpUseLocalFunctionCodeFixProvider.cs @@ -113,7 +113,7 @@ public override Task RegisterCodeFixesAsync(CodeFixContext context) CancellationToken cancellationToken) { // Determines if we can make the local function 'static'. We can make it static - // if the original lambda did not cpature any variables (other than the local + // if the original lambda did not capture any variables (other than the local // variable itself). it's ok for the lambda to capture itself as a static-local // function can reference itself without any problems. if (makeStaticIfPossible)