From 9d4eca1363ef1f581aae7bd0571e2b15ab2746e3 Mon Sep 17 00:00:00 2001 From: Loyalsoldier <10487845+Loyalsoldier@users.noreply.github.com> Date: Thu, 25 Feb 2021 14:30:58 +0800 Subject: [PATCH] Fix: option description (#423) --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 8a62452d..79739ccf 100644 --- a/main.go +++ b/main.go @@ -17,7 +17,7 @@ import ( var ( dataPath = flag.String("datapath", "./data", "Path to your custom 'data' directory") - outputName = flag.String("outputname", "dlc.dat", "Directory to place all generated files") + outputName = flag.String("outputname", "dlc.dat", "Name of the generated dat file") outputDir = flag.String("outputdir", "./", "Directory to place all generated files") exportLists = flag.String("exportlists", "", "Lists to be flattened and exported in plaintext format, separated by ',' comma") )