When realigning a block such as the following using "=" ``` haskell loop acc x:xs = let acc' = acc * 10 + digitToIt x in loop acc xs ``` the `in` is re-aligned with the variable binding on the previous line, not the `let`.
When realigning a block such as the following using "="
the
inis re-aligned with the variable binding on the previous line, not thelet.