[Dev][Comment]Fix typo in Microsoft.Plugin.Program/Main.cs (#20104)

therefor -> therefore
This commit is contained in:
Ikko Ashimine
2022-08-30 03:28:15 +09:00
committed by GitHub
parent c0d5f36224
commit a4f4d5985a

View File

@@ -20,7 +20,7 @@ namespace Microsoft.Plugin.Program
public class Main : IPlugin, IPluginI18n, IContextMenu, ISavable, IDisposable public class Main : IPlugin, IPluginI18n, IContextMenu, ISavable, IDisposable
{ {
// The order of this array is important! The Parsers will be checked in order (index 0 to index Length-1) and the first parser which is able to parse the Query will be used // The order of this array is important! The Parsers will be checked in order (index 0 to index Length-1) and the first parser which is able to parse the Query will be used
// NoArgumentsArgumentParser does always succeed and therefor should always be last/fallback // NoArgumentsArgumentParser does always succeed and therefore should always be last/fallback
private static readonly IProgramArgumentParser[] _programArgumentParsers = new IProgramArgumentParser[] private static readonly IProgramArgumentParser[] _programArgumentParsers = new IProgramArgumentParser[]
{ {
new DoubleDashProgramArgumentParser(), new DoubleDashProgramArgumentParser(),