From d1714f3c987dde96e82fb5287d953f41538cf17a Mon Sep 17 00:00:00 2001 From: Bluzume <39113159+KuromeSan@users.noreply.github.com> Date: Sat, 14 Aug 2021 03:38:57 +1200 Subject: [PATCH] fix example --- AppInfoCli/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppInfoCli/Program.cs b/AppInfoCli/Program.cs index 458710e..f7308e1 100644 --- a/AppInfoCli/Program.cs +++ b/AppInfoCli/Program.cs @@ -56,7 +56,7 @@ namespace CXMLCli Console.WriteLine("\t-w --wait-exit Wait for keypress before exiting"); Console.WriteLine("\t-d --decompile Decompile CXML to XML."); Console.WriteLine("\t-c --compile Compile XML to CXML"); - Console.WriteLine("Example Decompile: " + Path.GetFileName(Assembly.GetEntryAssembly().Location) + " app.info -d -dt"); + Console.WriteLine("Example Decompile: " + Path.GetFileName(Assembly.GetEntryAssembly().Location) + " app.info -d -p"); Console.WriteLine("Example Compile: " + Path.GetFileName(Assembly.GetEntryAssembly().Location) + " app.xml app.info -c"); Console.WriteLine("Default functonality is to Decompile,\nThis is canceled if any other arguments passed."); return 0;