Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore: remove extra spaces
  • Loading branch information
filzrev committed Feb 12, 2025
commit 2a82c0af88e9733d89c3a4033f56c17865d827d3
6 changes: 3 additions & 3 deletions src/ConsoleAppFramework/ConsoleAppBaseCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public static class ConsoleAppBaseCode
#pragma warning disable

namespace ConsoleAppFramework;

using System;
using System.Text;
using System.Reflection;
Expand Down Expand Up @@ -307,7 +307,7 @@ static bool TryShowHelpOrVersion(ReadOnlySpan<string> args, int requiredParamete
if (args.Length == 0)
{
if (requiredParameterCount == 0) return false;

ShowHelp(helpId);
return true;
}
Expand Down Expand Up @@ -531,7 +531,7 @@ static bool TryShowHelpOrVersion(ReadOnlySpan<string> args, int requiredParamete
if (args.Length == 0)
{
if (requiredParameterCount == 0) return false;

ShowHelp(helpId);
return true;
}
Expand Down