Skip to content

Commit d5fbf29

Browse files
committed
line up comments
1 parent bcce072 commit d5fbf29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

posts/lisp-to-javascript-compiler.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ let print = console.log;
174174

175175
program.into_iter().for_each(|expression| {
176176

177-
// I found it easier to write to a parent variable
178-
// which didn't feel very Rust-like but it worked for me!
177+
// I found it easier to write to a parent variable
178+
// which didn't feel very Rust-like but it worked for me!
179179
output.push_str(&compile_expression(expression));
180180
});
181181

0 commit comments

Comments
 (0)