diff --git a/src/SCFirstOrderLogic/SentenceFormatting/(Labellers)/LabelSets.cs b/src/SCFirstOrderLogic/SentenceFormatting/(Labellers)/LabelSets.cs index 3b54b71c..8685a961 100644 --- a/src/SCFirstOrderLogic/SentenceFormatting/(Labellers)/LabelSets.cs +++ b/src/SCFirstOrderLogic/SentenceFormatting/(Labellers)/LabelSets.cs @@ -10,17 +10,17 @@ namespace SCFirstOrderLogic.SentenceFormatting; public static class LabelSets { /// - /// The (lowercase) Greek alphabet. + /// The (lower case) Greek alphabet. /// public static readonly IEnumerable LowerGreekAlphabet = new[] { "α", "β", "γ", "δ", "ε", "ζ", "η", "θ", "ι", "κ", "λ", "μ", "ν", "ξ", "ο", "π", "ρ", "σ", "τ", "υ", "φ", "χ", "ψ", "ω" }; /// - /// The (lower-case) modern Latin alphabet + /// The (lower case) modern Latin alphabet /// public static readonly IEnumerable LowerModernLatinAlphabet = new[] { "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z" }; /// - /// The (upper-case) modern Latin alphabet + /// The (upper case) modern Latin alphabet /// public static readonly IEnumerable UpperModernLatinAlphabet = new[] { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z" }; }