Skip to content

Commit

Permalink
README minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
eduherminio committed Nov 19, 2023
1 parent 0aadad1 commit b97e3ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Some cool repositories that add their own abstractions/customizations on top of

Methods that accept an instance of `SolverConfiguration` were deprecated in `v2` and removed in `v3`.

They have been replaced by methods that accept `Action<SolverConfiguration>` overrides.
They have been replaced by methods that accept `Action<SolverConfiguration>`.

`v1`:

Expand Down Expand Up @@ -178,7 +178,7 @@ public class Day_01 : BaseDay

## Tips

Your problem classes are instantiated only once, so parsing the input file (`InputFilePath`) in your class constructor allows you to:
Your problem/day classes are instantiated only once, so parsing the input file (`InputFilePath`) in your class constructor allows you to:

- Avoid executing parsing logic twice per problem.
- Measure more accurately your part 1 and part 2 solutions performance\*.
Expand Down
4 changes: 1 addition & 3 deletions src/AoCHelper/SolvingException.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
using System.Runtime.Serialization;

namespace AoCHelper
namespace AoCHelper
{
public class SolvingException : Exception
{
Expand Down

0 comments on commit b97e3ff

Please sign in to comment.