Fix typos in code comments

This commit is contained in:
GitHubPang
2021-09-14 07:52:08 +08:00
committed by Phil Scott
parent c3510f3036
commit d34012cad0
10 changed files with 11 additions and 11 deletions

View File

@ -134,13 +134,13 @@ namespace Spectre.Console
if (Mode == SelectionMode.Leaf)
{
// Select the node and all it's children
// Select the node and all its children
foreach (var item in current.Traverse(includeSelf: true))
{
item.IsSelected = select;
}
// Visit every parent and evaluate if it's selection
// Visit every parent and evaluate if its selection
// status need to be updated
var parent = current.Parent;
while (parent != null)