We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f618230 commit 8cfc7a7Copy full SHA for 8cfc7a7
src/pretty_print/pretty_statements.rs
@@ -215,10 +215,7 @@ impl ToDoc for Statement {
215
// O parser já restringe TestDef a funções sem parâmetros e retorno Void;
216
// aqui apenas espelhamos essa forma textual.
217
Statement::TestDef(func) => {
218
- let header = concat(
219
- text("test "),
220
- concat(text(func.name.clone()), text("()")),
221
- );
+ let header = concat(text("test "), concat(text(func.name.clone()), text("()")));
222
223
let body_doc = func
224
.body
0 commit comments