Spelling: ... src/modules/launcher (#3694)

This commit is contained in:
Josh Soref
2020-05-25 20:27:13 -04:00
committed by GitHub
parent c674fe1f04
commit 71e528139c
29 changed files with 38 additions and 38 deletions

View File

@@ -14,7 +14,7 @@ namespace Microsoft.Plugin.WindowWalker.Components
{
/// <summary>
/// Finds the best match (the one with the most
/// number of letters adjecent to each other) and
/// number of letters adjacent to each other) and
/// returns the index location of each of the letters
/// of the matches
/// </summary>
@@ -67,7 +67,7 @@ namespace Microsoft.Plugin.WindowWalker.Components
/// Gets all the possible matches to the search string with in the text
/// </summary>
/// <param name="matches"> a table showing the matches as generated by
/// a two dimentional array with the first dimention the text and the second
/// a two dimensional array with the first dimension the text and the second
/// one the search string and each cell marked as an intersection between the two</param>
/// <returns>a list of the possible combinations that match the search text</returns>
public static List<List<int>> GetAllMatchIndexes(bool[,] matches)

View File

@@ -7,7 +7,7 @@ using System;
namespace Microsoft.Plugin.WindowWalker.Components
{
/// <summary>
/// Class containg methods to control the live preview
/// Class containing methods to control the live preview
/// </summary>
internal class LivePreview
{

View File

@@ -85,7 +85,7 @@ namespace Microsoft.Plugin.WindowWalker.Components
/// <param name="hwnd">The handle to the current window being enumerated</param>
/// <param name="lParam">Value being passed from the caller (we don't use this but might come in handy
/// in the future</param>
/// <returns>true to make sure to contiue enumeration</returns>
/// <returns>true to make sure to continue enumeration</returns>
public bool WindowEnumerationCallBack(IntPtr hwnd, IntPtr lParam)
{
Window newWindow = new Window(hwnd);

View File

@@ -302,7 +302,7 @@ namespace Microsoft.Plugin.WindowWalker.Components
}
/// <summary>
/// Switches dekstop focus to the window
/// Switches desktop focus to the window
/// </summary>
public void SwitchToWindow()
{