The following: ``` scss h1:nth-of-type(#{2 + 'n + 1'}) { color: red; } ``` is transformed by libsass to: ``` css h1:nth-of-type(2n+1) { color: red; } ``` As you can see, spaces around the `+` are lost. Ruby Sass (3.4.5) preserves them.