aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoseConseco <bartosz.styperek@gmail.com>2022-11-06 19:35:41 +0100
committerJoseConseco <bartosz.styperek@gmail.com>2022-11-06 19:35:41 +0100
commit3979ef9f8e5a00ed64559b46bbfbf9bfa1f4223e (patch)
tree4adc797fd5d866623c573f23994cdb4ea6b43316
parent07f8f2e885a8c6aa78da1accd7f821b415bf66e3 (diff)
downloadautotiling-3979ef9f8e5a00ed64559b46bbfbf9bfa1f4223e.tar.gz
typos fix
-rw-r--r--autotiling/main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/autotiling/main.py b/autotiling/main.py
index 939831c..a9b48d9 100644
--- a/autotiling/main.py
+++ b/autotiling/main.py
@@ -147,13 +147,13 @@ def main():
default=1.0, )
parser.add_argument("-sh",
"--splitheight",
- help='set the height of the horizontal split (as factor); default: 0.5;',
+ help='set the height of the horizontal split (as factor); default: 1.0;',
type=float,
default=1, )
parser.add_argument("-sr",
"--splitratio",
help='Split direction ratio - based on window height/width; default: 1;'
- 'try "1.61", for golden ratio - window has to be 61% wider for left/right split; default: 1;',
+ 'try "1.61", for golden ratio - window has to be 61% wider for left/right split; default: 1.0;',
type=float,
default=1, )
"""