We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bb390d commit 21d63e8Copy full SHA for 21d63e8
README.md
@@ -34,7 +34,7 @@ Swiftx provides a number of common data types and abstractions any codebase can
34
35
A small example:
36
37
-```swiftz
+```swift
38
import Swiftx
39
40
let str : String? = .Some("Hello ")
@@ -44,7 +44,7 @@ let greeting = (+"World") <^> str // .Some("Hello World")
44
Seamless interaction with existing platform libraries is also possible with
45
minimal effort:
46
47
48
import Foundation
49
import struct Swiftx.Result
50
@@ -58,7 +58,7 @@ let result : Result<[String]> = from({ ep in
58
59
Swiftx can even help with expressions of nothingness or errors:
60
61
62
63
64
/// We may not be able to do what we said we'd do, but this definition compiles. At runtime,
0 commit comments