Skip to content

bug(queries): first formal parameter indentation #2

Description

@simonvic

Indent queries for formal parameters do not indent the first formal parameter properly.

void foo(
int x,
int y,
int z
) {}

Expected:

void foo(
	int x,
	int y,
	int z
) {}

Actual:

void foo(
int x,
	int y,
	int z
) {}

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions