From 5ab3b3f550b4cd05d04173a9e76305f29de14ceb Mon Sep 17 00:00:00 2001 From: Jakob Demler Date: Wed, 12 Jan 2022 17:41:29 +0100 Subject: [PATCH] Fix typo --- src/main/java/org/spdx/tools/SpdxConverter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/spdx/tools/SpdxConverter.java b/src/main/java/org/spdx/tools/SpdxConverter.java index 6b370de..2b431d5 100644 --- a/src/main/java/org/spdx/tools/SpdxConverter.java +++ b/src/main/java/org/spdx/tools/SpdxConverter.java @@ -201,7 +201,7 @@ private static void usage() { System.out.println("\tfromFilePath - File path of the file to convert from"); System.out.println("\ttoFilePath - output file"); System.out.println("\t[fromFileType] - optional file type of the input file. One of JSON, XLS, XLSX, TAG, RDFXML, YAML or XML. If not provided the file type will be determined by the file extension"); - System.out.println("\t[fromFileType] - optional file type of the output file. One of JSON, XLS, XLSX, TAG, RDFXML, YAML or XML. If not provided the file type will be determined by the file extension"); + System.out.println("\t[toFileType] - optional file type of the output file. One of JSON, XLS, XLSX, TAG, RDFXML, YAML or XML. If not provided the file type will be determined by the file extension"); } }