From c5dcd50c8f078e7f03cd83dcec368d3d1c2b50e6 Mon Sep 17 00:00:00 2001 From: Kyle McMaster Date: Wed, 24 Jul 2024 21:57:43 -0400 Subject: [PATCH] Update README.md (#534) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 00f47989..081fe006 100644 --- a/README.md +++ b/README.md @@ -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; } @@ -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