Skip to content

Commit 8cfc7a7

Browse files
committed
applied cargo fmt
1 parent f618230 commit 8cfc7a7

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/pretty_print/pretty_statements.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -215,10 +215,7 @@ impl ToDoc for Statement {
215215
// O parser já restringe TestDef a funções sem parâmetros e retorno Void;
216216
// aqui apenas espelhamos essa forma textual.
217217
Statement::TestDef(func) => {
218-
let header = concat(
219-
text("test "),
220-
concat(text(func.name.clone()), text("()")),
221-
);
218+
let header = concat(text("test "), concat(text(func.name.clone()), text("()")));
222219

223220
let body_doc = func
224221
.body

0 commit comments

Comments
 (0)