This (slimmed down) function: ```scala def consume (c : Char) { state = (state,c) match { case (HeaderLine(ln),'\r'|'\n') => { processHeaderLine(ln) ; NextLine(""+c) } } } ``` renders as this:  Adding spaces like `'\r' | '\n'` fixes the issue.