aboutsummaryrefslogtreecommitdiff
path: root/param.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'param.ccl')
-rw-r--r--param.ccl18
1 files changed, 9 insertions, 9 deletions
diff --git a/param.ccl b/param.ccl
index 0805d5b..9d0f2c4 100644
--- a/param.ccl
+++ b/param.ccl
@@ -8,22 +8,22 @@
private:
##########################
-# Directories to output to (overriden by outdir)
+# Directories to output to
##########################
-STRING outdir1D "Name of 1D ASCII output directory, overrides outdir"
+STRING outdir1D "Name of 1D ASCII output directory, overrides IO::outdir"
{
- .* :: "A regex which matches everything"
-} "."
+ .* :: "Any valid directory name, an empty string defaults to outdir"
+} ""
STRING outdir2D "Name of 2D ASCII output directory, overrides outdir"
{
- .* :: "A regex which matches everything"
-} "."
+ .* :: "Any valid directory name, an empty string defaults to outdir"
+} ""
-STRING outdir3D "Name of 3D ASCII output directory, overrides outdir"
+STRING outdir3D "Name of 3D ASCII output directory, overrides IO::outdir"
{
- .* :: "A regex which matches everything"
-} "."
+ .* :: "Any valid directory name, an empty string defaults to outdir"
+} ""
##########################