We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When OpenApiTextReaderReader translates a YamlException to OpenApiError, it sets "#line=" followed by a line number as OpenApiError.Pointer:
OpenApiTextReaderReader
YamlException
OpenApiError
OpenApiError.Pointer
OpenAPI.NET/src/Microsoft.OpenApi.Readers/OpenApiTextReaderReader.cs
Line 73 in cb254da
Here though, it instead sets "#char=" followed by a line number as OpenApiError.Pointer:
Line 48 in cb254da
Because there is a line number in both cases, I think "#line=" would be more appropriate than "#char=".
The text was updated successfully, but these errors were encountered:
Thank you for raising this issue. I agree that this is a mistake. I suspect that may be a result of a bad merge.
Sorry, something went wrong.
Fixed bug #495
b851e24
No branches or pull requests
When
OpenApiTextReaderReader
translates aYamlException
toOpenApiError
, it sets "#line=" followed by a line number asOpenApiError.Pointer
:OpenAPI.NET/src/Microsoft.OpenApi.Readers/OpenApiTextReaderReader.cs
Line 73 in cb254da
Here though, it instead sets "#char=" followed by a line number as
OpenApiError.Pointer
:OpenAPI.NET/src/Microsoft.OpenApi.Readers/OpenApiTextReaderReader.cs
Line 48 in cb254da
Because there is a line number in both cases, I think "#line=" would be more appropriate than "#char=".
The text was updated successfully, but these errors were encountered: