diff --git a/README.md b/README.md index 1f203a4..10a92d2 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ TryDivide(10, 2) ## Option -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. +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. They also provide a fantastic means of reducing primitive congestion in your code. ### Creating Options