Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fix typo in error message
Update link to benchmarks
  • Loading branch information
KyleMcMaster authored Jul 24, 2024
1 parent 219cc1b commit ffce3ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public class Manager
{
if (!ManagerType.TryFromName(value, true, out var parsed))
{
throw new Exception($"Invalid manage type of '{value}'");
throw new Exception($"Invalid manager type of '{value}'");
}
_managerType = parsed;
}
Expand Down Expand Up @@ -391,7 +391,7 @@ testEnumVar
.Default( ... );
```

N.B. For performance critical code the fluent interface carries some overhead that you may wish to avoid. See the available [benchmarks](src/SmartEnum.Benchmarks) code for your use case.
N.B. For performance critical code the fluent interface carries some overhead that you may wish to avoid. See the available [benchmarks](benchmarks/SmartEnum.Benchmarks) code for your use case.

### SmartFlagEnum

Expand Down

0 comments on commit ffce3ca

Please sign in to comment.