File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,15 @@ def get_args():
29
29
p .add_argument (
30
30
"-o" ,
31
31
"--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." ,
34
35
default = None ,
35
36
)
36
37
p .add_argument (
37
38
"-x" ,
38
39
"--xtype" ,
39
- help = f"the quantity on the independnt variable axis. allowed "
40
+ help = f"the quantity on the independent variable axis. allowed "
40
41
f"values: { * XQUANTITIES , } . If not specified then two-theta "
41
42
f"is assumed for the independent variable. Only implemented for "
42
43
f"tth currently" ,
@@ -54,7 +55,7 @@ def get_args():
54
55
"-f" ,
55
56
"--force-overwrite" ,
56
57
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 " ,
58
59
)
59
60
args = p .parse_args ()
60
61
return args
You can’t perform that action at this time.
0 commit comments