Skip to content

Commit

Permalink
Reverted Xcode 11 syntax to be compatible with Xcode 10.3 syntax (no …
Browse files Browse the repository at this point in the history
…return statement,)
  • Loading branch information
Sajjon committed Sep 18, 2019
1 parent 5636e23 commit b6e365d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/BitcoinKit/Core/Mnemonic/BitArray.swift
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ extension BitArray: CustomStringConvertible {

/// A string containing a suitable textual
/// representation of the bit array.
public var description: String { map { "\($0 == true ? 1 : 0)" }.joined() }
public var description: String { return map { "\($0 == true ? 1 : 0)" }.joined() }
}

extension BitArray: Equatable {}
Expand Down

0 comments on commit b6e365d

Please sign in to comment.