stevedonovan/gentle-intro

spaces around operators

Opened this issue · 3 comments

In section 1 at least

 x*x

most people write

x * x

and with

    n*factorial(n-1)

instead

n * factorial(n - 1)

a minor thing but I figured I'd mention it!

Yes, I generally prefer letting operators breathe as well

eddyb commented

Lack of space after some commas probably applies as well.

Yes, I've also put space after the comma after the format string in println. I'll keep the issue open since breathing is important ;)