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
I see, thanks! Yeah, formatting a string with quotation marks was
deliberate, but adding quotation marks around a string in `str::from` was
not. I would be happy about a pull request that fixes this issue!
The
str::from
builtin function is useful to convert value to a string, however the latter has an unexpected output when a string is given as argument."foo " + str::from(42)
returnsfoo 42
which is fine."foo " + str::from("bar")
returnsfoo "bar"
, when it should befoo bar
.The text was updated successfully, but these errors were encountered: