文字列テンプレート式にある余分なドル記号接頭辞を報告します。

このような接頭辞は安全に除去できます。

例:


fun example() {
    $"Example: prefix of length one is always redundant"
    $$"Example: string contains no interpolated values"
    $$"Example: $$ dollars are plain characters here $$"
}

クイックフィックス適用後:


fun example() {
    "Example: prefix of length one is always redundant"
    "Example: string contains no interpolated values"
    "Example: $$ dollars are plain characters here $$"
}