Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ardalis authored Jul 28, 2024
2 parents 19aaa74 + c5dcd50 commit dc3db2f
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 dc3db2f

Please sign in to comment.