From 332125e684be5f98f5ac1ffa1681e9a55e05629c Mon Sep 17 00:00:00 2001 From: Pim Brouwers Date: Fri, 6 Dec 2024 20:51:38 -0500 Subject: [PATCH] readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6e4ff05..7135cf0 100644 --- a/README.md +++ b/README.md @@ -228,7 +228,7 @@ using Danom; // a common pattern var x = int.TryParse("123", out var y) ? Option.Some(y) : Option.None(); -// or, more using the TryParse API +// or, more simply using the TryParse API var myInt = intOption.TryParse("123"); // -> Some(123) var myDouble = doubleOption.TryParse("123.45"); // -> Some(123.45) var myBool = boolOption.TryParse("true"); // -> Some(true)