We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5babbd commit b851e24Copy full SHA for b851e24
src/Microsoft.OpenApi.Readers/OpenApiTextReaderReader.cs
@@ -45,7 +45,7 @@ public OpenApiDocument Read(TextReader input, out OpenApiDiagnostic diagnostic)
45
catch (YamlException ex)
46
{
47
diagnostic = new OpenApiDiagnostic();
48
- diagnostic.Errors.Add(new OpenApiError($"#char={ex.Start.Line}", ex.Message));
+ diagnostic.Errors.Add(new OpenApiError($"#line={ex.Start.Line}", ex.Message));
49
return new OpenApiDocument();
50
}
51
0 commit comments