Skip to content

Commit 332125e

Browse files
committed
readme
1 parent d95bc94 commit 332125e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ using Danom;
228228
// a common pattern
229229
var x = int.TryParse("123", out var y) ? Option<int>.Some(y) : Option<int>.None();
230230

231-
// or, more using the TryParse API
231+
// or, more simply using the TryParse API
232232
var myInt = intOption.TryParse("123"); // -> Some(123)
233233
var myDouble = doubleOption.TryParse("123.45"); // -> Some(123.45)
234234
var myBool = boolOption.TryParse("true"); // -> Some(true)

0 commit comments

Comments
 (0)