SwiftKotlin
SwiftKotlin copied to clipboard
Remove unnecesary {} in string interpolators
Strings with simple expressions can remove the {}
.
Example:
"\(day), \(date.totalTime)"
Translates to
"${day}, ${date.totalTime}"
But could be
"$day, ${date.totalTime}"