Skip to content

Fix codebox format #39

Closed
Closed
@MrMystery10-del

Description

@MrMystery10-del

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions