From 7c224dcba13a05b2ee349a8970108467d60226ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Crazy=E5=87=A1?= <827799383@qq.com> Date: Mon, 9 Oct 2023 22:59:52 +0800 Subject: [PATCH] Fix formatting issues in CHANGELOG.md. --- CHANGELOG.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a593772e306cc..5cb65a80ed477 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,11 @@ Member macros can specify a list of protocols via the `conformances` argument to the macro role. The macro implementation will be provided with those protocols that are listed but have not already been implemented by the type to which the member macro is attached, in the same manner as extension macros. - ```swift - @attached(member, conformances: Decodable, Encodable, names: named(init(from:), encode(to:))) -@attached(extension, conformances: Decodable, Encodable, names: named(init(from:), encode(to:))) -macro Codable() = #externalMacro(module: "MyMacros", type: "CodableMacro") - ``` + ```swift + @attached(member, conformances: Decodable, Encodable, names: named(init(from:), encode(to:))) + @attached(extension, conformances: Decodable, Encodable, names: named(init(from:), encode(to:))) + macro Codable() = #externalMacro(module: "MyMacros", type: "CodableMacro") + ``` ## Swift 5.9