diff --git a/src/dotnet/commands/dotnet-complete/ParseCommand.cs b/src/dotnet/commands/dotnet-complete/ParseCommand.cs index fb86c6300..90972e119 100644 --- a/src/dotnet/commands/dotnet-complete/ParseCommand.cs +++ b/src/dotnet/commands/dotnet-complete/ParseCommand.cs @@ -31,7 +31,7 @@ namespace Microsoft.DotNet.Cli Console.WriteLine(); foreach (var error in result.Errors) { - Console.WriteLine($"[{error?.Option?.Name ?? "???"}] {error.Message}"); + Console.WriteLine($"[{error?.Option?.Name ?? "???"}] {error?.Message}"); } }