Skip to content

Commit e83ac1e

Browse files
committed
update README.md
1 parent 982b654 commit e83ac1e

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ A modern, allocation-free library providing robust optional types for .NET, offe
55
### Options vs. Exceptions
66
Exceptions are relatively expensive and are best reserved for unexpected failures and programmer mistakes.
77
For expected errors (like invalid user input or parse failures), it's often better to return a lightweight value the caller must handle.
8-
This makes error handling explicit, cheap, and hard to ignore without using exceptions for normal control flow.
8+
This makes error handling explicit, cheap, and hard to ignore.
9+
All without using exceptions for normal control flow.
910

1011
```bash
1112
dotnet add package Ametrin.Optional

testing/TUnit/Ametrin.Optional.Testing.TUnit.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</ItemGroup>
2222

2323
<ItemGroup>
24-
<PackageReference Include="TUnit.Assertions" Version="1.56.18" />
24+
<PackageReference Include="TUnit.Assertions" Version="1.56.35" />
2525
<PackageReference Include="Ametrin.Optional" Version="$(PackVersion)" />
2626
</ItemGroup>
2727

0 commit comments

Comments
 (0)