Browse Source

API docsz'

Tig 8 months ago
parent
commit
3e8d91670e
1 changed files with 4 additions and 2 deletions
  1. 4 2
      Terminal.Gui/Input/ICommandContext.cs

+ 4 - 2
Terminal.Gui/Input/ICommandContext.cs

@@ -2,9 +2,11 @@
 namespace Terminal.Gui;
 namespace Terminal.Gui;
 
 
 /// <summary>
 /// <summary>
-///     Describes the context in which a <see cref="Command"/> is being invoked. When a <see cref="Command"/> is invoked,
-///     a context object is passed to Command handlers. See <see cref="View.AddCommand(Command, CommandImplementation)"/>.
+///     Describes the context in which a <see cref="Command"/> is being invoked. <see cref="CommandContext{TBindingType}"/> inherits from this interface.
+///     When a <see cref="Command"/> is invoked,
+///     a context object is passed to Command handlers as an <see cref="ICommandContext"/> reference.
 /// </summary>
 /// </summary>
+/// <seealso cref="View.AddCommand(Command, CommandImplementation)"/>.
 public interface ICommandContext
 public interface ICommandContext
 {
 {
     /// <summary>
     /// <summary>