From ecb5b29e65bfc58b4c90216d4ca6ef3a573a28a7 Mon Sep 17 00:00:00 2001 From: stephencelis Date: Thu, 6 Jun 2024 22:09:17 +0000 Subject: [PATCH] Run swift-format --- Tests/CasePathsTests/MacroTests.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/CasePathsTests/MacroTests.swift b/Tests/CasePathsTests/MacroTests.swift index da0f2d7..22702fa 100644 --- a/Tests/CasePathsTests/MacroTests.swift +++ b/Tests/CasePathsTests/MacroTests.swift @@ -1,12 +1,12 @@ #if swift(>=5.9) import CasePaths - + @CasePathable private enum Comments { // Comment above case case bar /*Comment before case*/ case baz(Int) case fizz(buzz: String) // Comment on case - case fizzier/*Comment in case*/(Int, buzzier: String) + case fizzier /*Comment in case*/(Int, buzzier: String) } #endif