Skip to content

Commit

Permalink
Minor xml doc tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
sdcondon committed Jul 25, 2024
1 parent 9df096d commit 8f3b4f8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ namespace SCFirstOrderLogic.SentenceFormatting;
public static class LabelSets
{
/// <summary>
/// The (lowercase) Greek alphabet.
/// The (lower case) Greek alphabet.
/// </summary>
public static readonly IEnumerable<string> LowerGreekAlphabet = new[] { "α", "β", "γ", "δ", "ε", "ζ", "η", "θ", "ι", "κ", "λ", "μ", "ν", "ξ", "ο", "π", "ρ", "σ", "τ", "υ", "φ", "χ", "ψ", "ω" };

/// <summary>
/// The (lower-case) modern Latin alphabet
/// The (lower case) modern Latin alphabet
/// </summary>
public static readonly IEnumerable<string> 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" };

/// <summary>
/// The (upper-case) modern Latin alphabet
/// The (upper case) modern Latin alphabet
/// </summary>
public static readonly IEnumerable<string> 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" };
}

0 comments on commit 8f3b4f8

Please sign in to comment.