From b97e3ff9944faf7098aa07f0e5bcdadd6d81dd14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eduardo=20C=C3=A1ceres?= Date: Sun, 19 Nov 2023 18:20:41 +0100 Subject: [PATCH] README minor fixes --- README.md | 4 ++-- src/AoCHelper/SolvingException.cs | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d51736c..af98249 100644 --- a/README.md +++ b/README.md @@ -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` overrides. +They have been replaced by methods that accept `Action`. `v1`: @@ -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\*. diff --git a/src/AoCHelper/SolvingException.cs b/src/AoCHelper/SolvingException.cs index 47dffbc..5690eed 100644 --- a/src/AoCHelper/SolvingException.cs +++ b/src/AoCHelper/SolvingException.cs @@ -1,6 +1,4 @@ -using System.Runtime.Serialization; - -namespace AoCHelper +namespace AoCHelper { public class SolvingException : Exception {