We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d95bc94 commit 332125eCopy full SHA for 332125e
README.md
@@ -228,7 +228,7 @@ using Danom;
228
// a common pattern
229
var x = int.TryParse("123", out var y) ? Option<int>.Some(y) : Option<int>.None();
230
231
-// or, more using the TryParse API
+// or, more simply using the TryParse API
232
var myInt = intOption.TryParse("123"); // -> Some(123)
233
var myDouble = doubleOption.TryParse("123.45"); // -> Some(123.45)
234
var myBool = boolOption.TryParse("true"); // -> Some(true)
0 commit comments