From 422012c994a97b085cfbfa22469ee804b7bc02be Mon Sep 17 00:00:00 2001 From: Salvage <29021710+Saalvage@users.noreply.github.com> Date: Mon, 26 Sep 2022 14:57:09 +0200 Subject: [PATCH] Make documentation consistent --- src/Spectre.Console/Prompts/MultiSelectionPrompt.cs | 2 +- src/Spectre.Console/Prompts/SelectionPrompt.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Spectre.Console/Prompts/MultiSelectionPrompt.cs b/src/Spectre.Console/Prompts/MultiSelectionPrompt.cs index 5f68387..20dbc71 100644 --- a/src/Spectre.Console/Prompts/MultiSelectionPrompt.cs +++ b/src/Spectre.Console/Prompts/MultiSelectionPrompt.cs @@ -19,7 +19,7 @@ public sealed class MultiSelectionPrompt : IPrompt>, IListPromptStrat public int PageSize { get; set; } = 10; /// - /// Gets or sets whether the selection should wrap around when reaching the edge. + /// Gets or sets a value indicating whether the selection should wrap around when reaching the edge. /// Defaults to false. /// public bool WrapAround { get; set; } = false; diff --git a/src/Spectre.Console/Prompts/SelectionPrompt.cs b/src/Spectre.Console/Prompts/SelectionPrompt.cs index 32edb20..1622b6e 100644 --- a/src/Spectre.Console/Prompts/SelectionPrompt.cs +++ b/src/Spectre.Console/Prompts/SelectionPrompt.cs @@ -21,7 +21,7 @@ public sealed class SelectionPrompt : IPrompt, IListPromptStrategy public int PageSize { get; set; } = 10; /// - /// Gets or sets whether the selection should wrap around when reaching the edge. + /// Gets or sets a value indicating whether the selection should wrap around when reaching the edge. /// Defaults to false. /// public bool WrapAround { get; set; } = false;