You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After formatting with Rufo, it changes the code to this:
print "Hello
World"
Often I have additional code in a string I'm interpolating - for example "#{a}\n#{b}\n#{c}\n". I can understand this usecase, sure. But, simple calls like.join("\n") result in a needless newline.
It's much more readable if I was able to write .join("\n") IMO!
The text was updated successfully, but these errors were encountered:
I have code that is like this:
After formatting with Rufo, it changes the code to this:
Often I have additional code in a string I'm interpolating - for example
"#{a}\n#{b}\n#{c}\n"
. I can understand this usecase, sure. But, simple calls like.join("\n")
result in a needless newline.It's much more readable if I was able to write
.join("\n")
IMO!The text was updated successfully, but these errors were encountered: