Make documentation consistent

This commit is contained in:
Salvage 2022-09-26 14:57:09 +02:00 committed by Phil Scott
parent 4f0ec87522
commit 422012c994
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ public sealed class MultiSelectionPrompt<T> : IPrompt<List<T>>, IListPromptStrat
public int PageSize { get; set; } = 10;
/// <summary>
/// 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 <c>false</c>.
/// </summary>
public bool WrapAround { get; set; } = false;

View File

@ -21,7 +21,7 @@ public sealed class SelectionPrompt<T> : IPrompt<T>, IListPromptStrategy<T>
public int PageSize { get; set; } = 10;
/// <summary>
/// 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 <c>false</c>.
/// </summary>
public bool WrapAround { get; set; } = false;