Take e.g. this statement from groovy docs: ``` assert 034G.class == BigInteger // octal ``` Formatted it becomes: ``` assert 034G. class == BigInteger // octal ``` Note the weird space between the dot and `class`.
Take e.g. this statement from groovy docs:
Formatted it becomes:
Note the weird space between the dot and
class.