Skip to content

Commit 952c0c4

Browse files
committed
readme spelling
1 parent fc56fa8 commit 952c0c4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ TryDivide(10, 2)
5858

5959
## Option
6060

61-
Options have an underlying type and can "optionallu" hold a value of that type. Options are a much safer way to handle nullable values, they virtually eliminate null reference exceptions, and a fantastic means of reducing primitive congestion in your code.
61+
Options have an underlying type and can optionally hold a value of that type. Options are a much safer way to handle nullable values, they virtually eliminate null reference exceptions, and a fantastic means of reducing primitive congestion in your code.
6262

6363
### Creating Options
6464

@@ -89,7 +89,7 @@ With this method defined we can begin performing operations against the Option r
8989
```csharp
9090
IEnumerable<int> nums = [1,2,3];
9191

92-
// Exhasutive matching
92+
// Exhaustive matching
9393
TryFind(nums, x => x == 1)
9494
.Match(
9595
some: x => Console.WriteLine("Found: {0}", x),
@@ -159,7 +159,7 @@ public Result<int, string> TryDivide(int numerator, int denominator) =>
159159
With this method defined we can begin performing operations against the Result result:
160160

161161
```csharp
162-
// Exhasutive matching
162+
// Exhaustive matching
163163
TryDivide(10, 2)
164164
.Match(
165165
ok: x => Console.WriteLine("Result: {0}", x),

0 commit comments

Comments
 (0)