We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f60e371 commit fb9f4e3Copy full SHA for fb9f4e3
Src/ConfigurationReader.cs
@@ -26,7 +26,7 @@ private static void Parse(StringReader reader, Configuration config)
26
{
27
var currentSection = new Section(Section.DefaultSectionName);
28
var preCommentBuilder = new StringBuilder();
29
- HashSet<char> validCommentChars = new HashSet<char>(Configuration.ValidCommentChars); // Initialize once for ecah file to optimize performance
+ HashSet<char> validCommentChars = new HashSet<char>(Configuration.ValidCommentChars); // Initialize once for each reader to optimize performance
30
31
int lineNumber = 0;
32
0 commit comments