stdlib: fix coding style

This commit is contained in:
Dmitri Gribenko
2016-02-24 14:39:49 -08:00
parent 9a0c50b82f
commit 7b3e9c3409

View File

@@ -37,8 +37,7 @@ for int_ty in all_integer_types(word_bits):
extension String : StringInterpolationConvertible {
/// Create an instance by concatenating the elements of `strings`.
@effects(readonly)
public
init(stringInterpolation strings: String...) {
public init(stringInterpolation strings: String...) {
self.init()
for str in strings {
self += str
@@ -46,8 +45,7 @@ extension String : StringInterpolationConvertible {
}
/// Create an instance containing `expr`'s `print` representation.
public
init<T>(stringInterpolationSegment expr: T) {
public init<T>(stringInterpolationSegment expr: T) {
self = String(expr)
}