diff --git a/README.md b/README.md index 5f01dd1..21f4a42 100644 --- a/README.md +++ b/README.md @@ -88,11 +88,16 @@ _Note: History information is persisted for an entire application session. Also, ```csharp class AutoCompletionHandler : IAutoCompleteHandler { - // characters to start completion from + /// + /// Characters to start completion from. + /// public char[] Separators { get; set; } = new char[] { ' ', '.', '/' }; - // text - The current text entered in the console - // index - The index of the terminal cursor within {text} + /// + /// Used to resolve possible completions. + /// + /// The current text entered in the console. + /// The index of the terminal cursor within . public string[] GetSuggestions(string text, int index) { if (text.StartsWith("git "))