From d4d314ec2725a5717eb27dbb86bc615232bf1c51 Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Sun, 7 Jul 2024 20:46:19 +1000 Subject: [PATCH] Separators typo --- DiffPlex/Chunkers/WordChunker.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DiffPlex/Chunkers/WordChunker.cs b/DiffPlex/Chunkers/WordChunker.cs index 4e23dbe9..66a9386f 100644 --- a/DiffPlex/Chunkers/WordChunker.cs +++ b/DiffPlex/Chunkers/WordChunker.cs @@ -2,14 +2,14 @@ { public class WordChunker:DelimiterChunker { - private static char[] WordSeparaters { get; } = { ' ', '\t', '.', '(', ')', '{', '}', ',', '!', '?', ';' }; + private static char[] WordSeparators { get; } = { ' ', '\t', '.', '(', ')', '{', '}', ',', '!', '?', ';' }; /// /// Gets the default singleton instance of the chunker. /// public static WordChunker Instance { get; } = new WordChunker(); - public WordChunker() : base(WordSeparaters) + public WordChunker() : base(WordSeparators) { } }