I'm using `swift-format 509.0.0`. If I prepare the following sample code and run `swift-format format`, it formats it into code that cannot be built. This problem did not occur in `swift-format 508.0.0`. Is it a bug in `swift-format 509.0.0`? ```swift import Foundation @available(*, deprecated, renamed: "num", message: """ This is multi-line string """) func int() -> Int { 1 } ```  ```sh swift-format format -i Sources/main.swift ``` ```swift import Foundation @available( *, deprecated, renamed: "num", message: """This is multi-line string""" ) func int() -> Int { 1 } ``` 