Skip to content

Commit ca45943

Browse files
edited help message
1 parent 20eb2b8 commit ca45943

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/diffpy/labpdfproc/labpdfprocapp.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,15 @@ def get_args():
2929
p.add_argument(
3030
"-o",
3131
"--output-directory",
32-
help="the name of the output directory. If it doesn't exist it "
33-
"will be created. Not currently implemented",
32+
help="the name of the output directory. If not specified "
33+
"then corrected files will be written to the current directory."
34+
"If the specified directory doesn't exist it will be created.",
3435
default=None,
3536
)
3637
p.add_argument(
3738
"-x",
3839
"--xtype",
39-
help=f"the quantity on the independnt variable axis. allowed "
40+
help=f"the quantity on the independent variable axis. allowed "
4041
f"values: {*XQUANTITIES, }. If not specified then two-theta "
4142
f"is assumed for the independent variable. Only implemented for "
4243
f"tth currently",
@@ -54,7 +55,7 @@ def get_args():
5455
"-f",
5556
"--force-overwrite",
5657
action="store_true",
57-
help="outputs will not overwrite existing file unless --force is spacified",
58+
help="outputs will not overwrite existing file unless --force is specified",
5859
)
5960
args = p.parse_args()
6061
return args

0 commit comments

Comments
 (0)