diff --git a/Terminal.Gui/Drawing/SixelSupportDetector.cs b/Terminal.Gui/Drawing/SixelSupportDetector.cs
index 54b7cd5c0..c60ffeb53 100644
--- a/Terminal.Gui/Drawing/SixelSupportDetector.cs
+++ b/Terminal.Gui/Drawing/SixelSupportDetector.cs
@@ -4,11 +4,18 @@ using Microsoft.CodeAnalysis;
namespace Terminal.Gui;
///
-/// Uses ANSII escape sequences to detect whether sixel is supported
+/// Uses Ansi escape sequences to detect whether sixel is supported
/// by the terminal.
///
public class SixelSupportDetector
{
+ ///
+ /// Sends Ansi escape sequences to the console to determine whether
+ /// sixel is supported (and
+ /// etc).
+ ///
+ /// Description of sixel support, may include assumptions where
+ /// expected response codes are not returned by console.
public SixelSupportResult Detect ()
{
var result = new SixelSupportResult ();