From 3131556bb58e2094ffc9290496e0d693e9f6d7fd Mon Sep 17 00:00:00 2001 From: Dwayne Bailey Date: Tue, 13 Aug 2024 12:57:37 +0100 Subject: [PATCH] Add blank before a comment in Apple files --- lib/twine/formatters/apple.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twine/formatters/apple.rb b/lib/twine/formatters/apple.rb index 82897a3..3283851 100644 --- a/lib/twine/formatters/apple.rb +++ b/lib/twine/formatters/apple.rb @@ -83,7 +83,7 @@ module Twine end def format_comment(definition, lang) - "/* #{definition.comment.gsub('*/', '* /')} */\n" if definition.comment + "\n/* #{definition.comment.gsub('*/', '* /')} */\n" if definition.comment end def format_key(key)