diff --git a/Terminal.Gui/Configuration/RuneJsonConverter.cs b/Terminal.Gui/Configuration/RuneJsonConverter.cs index f6a6b1612..33cbce668 100644 --- a/Terminal.Gui/Configuration/RuneJsonConverter.cs +++ b/Terminal.Gui/Configuration/RuneJsonConverter.cs @@ -11,12 +11,11 @@ namespace Terminal.Gui; /// If the Rune is printable, it will be serialized as the glyph; otherwise the \u format (e.g. "\\u2611") is used. /// /// -/// Supports deserializing a string as -/// one of: -/// - unicode char (e.g. "☑") -/// - U+hex format (e.g. "U+2611") -/// - \u format (e.g. "\\u2611") -/// - A decimal number (e.g. "97" for "a") +/// Supports deserializing as one of: +/// - unicode glyph in a string (e.g. "☑") +/// - U+hex format in a string (e.g. "U+2611") +/// - \u format in a string (e.g. "\\u2611") +/// - A decimal number (e.g. 97 for "a") /// /// internal class RuneJsonConverter : JsonConverter diff --git a/Terminal.Gui/Drawing/Glyphs.cs b/Terminal.Gui/Drawing/Glyphs.cs index 7f8dd13b9..1268a576d 100644 --- a/Terminal.Gui/Drawing/Glyphs.cs +++ b/Terminal.Gui/Drawing/Glyphs.cs @@ -8,11 +8,14 @@ /// /// /// The default glyphs can be changed via the . Within a config.json -/// file The Json property name is the property name prefixed with "Glyphs.". +/// file the Json property name is the property name prefixed with "Glyphs.". /// /// -/// The JSon property can be either a decimal number or a string. The string may be one of: - A unicode char -/// (e.g. "☑") - A hex value in U+ format (e.g. "U+2611") - A hex value in UTF-16 format (e.g. "\\u2611") +/// The Json property can be one of: +/// - unicode glyph in a string (e.g. "☑") +/// - U+hex format in a string (e.g. "U+2611") +/// - \u format in a string (e.g. "\\u2611") +/// - A decimal number (e.g. 97 for "a") /// /// public class GlyphDefinitions