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

Fix codebox format #39

Closed
MrMystery10-del opened this issue Mar 18, 2024 · 2 comments
Closed

Fix codebox format #39

MrMystery10-del opened this issue Mar 18, 2024 · 2 comments

Comments

@MrMystery10-del
Copy link

Pretty much all codeboxes in 'src/boxed_primitives' are not formatted correctly.

Instead of:

void main() {
     Boolean b = null;
     System.out.println(b);
     b = true;
     System.out.println(true);
}

They are formatted without the tab before new line in method body:

void main() {
Boolean b = null;
System.out.println(b);
b = true;
System.out.println(true);
}

This is just ugly and bad for readability.

@MrMystery10-del
Copy link
Author

Opened pull-request for this: #40

@bowbahdoe
Copy link
Collaborator

bowbahdoe commented Mar 19, 2024

This is intentional. Closing with #40

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

No branches or pull requests

2 participants