From c19673787a3ba4cd8064cc86344a04c668192c08 Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Fri, 9 Aug 2024 22:11:08 -0400 Subject: [PATCH] Program: Fix copy-paste error in output BYAML argument name --- README.md | 4 ++-- Rotationator/Program.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f0942fc..451ba36 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,11 @@ Description: Generates a new VSSetting BYAMl file. Usage: - Rotationator [options] + Rotationator [options] Arguments: The last VSSetting BYAML file. - The output VSSetting BYAML file. + The output VSSetting BYAML file. Options: --version Show version information diff --git a/Rotationator/Program.cs b/Rotationator/Program.cs index 9520f2b..c64dbca 100644 --- a/Rotationator/Program.cs +++ b/Rotationator/Program.cs @@ -1,4 +1,4 @@ -using System.CommandLine; +using System.CommandLine; using System.Text.Json; using OatmealDome.BinaryData; using OatmealDome.NinLib.Byaml; @@ -60,7 +60,7 @@ Random random = new Random(); Argument lastByamlArg = new Argument("lastByaml", "The last VSSetting BYAML file."); -Argument outputByamlArg = new Argument("lastByaml", "The output VSSetting BYAML file."); +Argument outputByamlArg = new Argument("outputByaml", "The output VSSetting BYAML file."); Command command = new RootCommand("Generates a new VSSetting BYAMl file.") {