Skip to content
New issue

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

[Bug] XML Declaration Whitespace Error in receiver_message_layout.xml #142

Closed
Saumy1905 opened this issue Oct 30, 2024 · 0 comments · Fixed by #144
Closed

[Bug] XML Declaration Whitespace Error in receiver_message_layout.xml #142

Saumy1905 opened this issue Oct 30, 2024 · 0 comments · Fixed by #144

Comments

@Saumy1905
Copy link
Contributor

I encountered an error in the receiver_message_layout.xml file related to the XML declaration. The specific issue is as follows:

Error Message:

lineNumber: 1; columnNumber: 36; White space is required before the encoding pseudo attribute in the XML declaration.

Resolution:

The error is caused by a missing whitespace before the encoding attribute in the XML declaration. The current declaration is:

<?xml version="1.0"encoding="utf-8"?>

It should be corrected to:

<?xml version="1.0" encoding="utf-8"?>

Suggested Fix:

I have corrected the XML declaration by adding the required whitespace:

<?xml version="1.0" encoding="utf-8"?>

This fix resolves the issue and adheres to proper XML formatting.


@Vishwajith-Shettigar please assign this to me under gssoc-ext and hacktoberfest.


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant