Update TreeExportCli.java

missing --file arg in "Example: ast-dump --format xml --language java --file MyFile.java" added
This commit is contained in:
mohan-chinnappan-n 2022-09-09 04:21:56 -04:00 committed by GitHub
parent 0f99ef0c3c
commit 11b7bda871
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,7 +139,7 @@ public class TreeExportCli {
sb.append(System.lineSeparator())
.append(System.lineSeparator());
sb.append("Example: ast-dump --format xml --language java MyFile.java")
sb.append("Example: ast-dump --format xml --language java --file MyFile.java")
.append(System.lineSeparator());
System.err.print(sb);