SwiftKotlin icon indicating copy to clipboard operation
SwiftKotlin copied to clipboard

Remove unnecesary {} in string interpolators

Open angelolloqui opened this issue 7 years ago • 0 comments

Strings with simple expressions can remove the {}.

Example:

"\(day), \(date.totalTime)"

Translates to

"${day}, ${date.totalTime}"

But could be

"$day, ${date.totalTime}"

angelolloqui avatar Oct 18 '17 16:10 angelolloqui