Skip to content

Commit

Permalink
Changed String(_:) init to use String(describing:) internally
Browse files Browse the repository at this point in the history
  • Loading branch information
calebkleveter committed May 5, 2018
1 parent eba6888 commit 8f6f549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Manifest/Internal.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ extension String {

/// Adds Linux compatibility for the `String(_:)` initializer.
init(_ mutableString: NSMutableString) {
self = mutableString.description
self = String(describing: mutableString)
}
}

Expand Down

0 comments on commit 8f6f549

Please sign in to comment.