Skip to content

Commit 27edca2

Browse files
authored
Merge pull request #4614 from apple/stdlib-fix-coding-style
stdlib: fix coding style
2 parents 31d3bb6 + 31f7a0a commit 27edca2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/public/core/FixedPoint.swift.gyb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ public struct ${Self}
273273
#if _endian(big)
274274
self = value
275275
#else
276-
self = ${Self}(Builtin.int_bswap_${BuiltinName}(value._value) )
276+
self = ${Self}(Builtin.int_bswap_${BuiltinName}(value._value))
277277
#endif
278278
}
279279

@@ -284,7 +284,7 @@ public struct ${Self}
284284
#if _endian(little)
285285
self = value
286286
#else
287-
self = ${Self}(Builtin.int_bswap_${BuiltinName}(value._value) )
287+
self = ${Self}(Builtin.int_bswap_${BuiltinName}(value._value))
288288
#endif
289289
}
290290
% end

0 commit comments

Comments
 (0)