From 4548702e99a2406b58098a800e1685bae01f2805 Mon Sep 17 00:00:00 2001 From: David BELEY <6568955+dbeley@users.noreply.github.com> Date: Fri, 10 Feb 2023 01:43:20 +0100 Subject: [PATCH] Add accepted boolean values (#121) --- pages/Configuring/Variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/Configuring/Variables.md b/pages/Configuring/Variables.md index fb0aa8f..3ab5c8a 100644 --- a/pages/Configuring/Variables.md +++ b/pages/Configuring/Variables.md @@ -11,7 +11,7 @@ the layout pages and not here. (See the Sidebar for Dwindle and Master layouts) | type | description | |---|---| | int | integer | -| bool | boolean, `true` or `false` (`yes` or `no`, `0` or `1`) - any numerical value that is not `0` or `1` will cause undefined behaviour. | +| bool | boolean, `true` or `false` (`yes` or `no`, `on` or `off`, `0` or `1`) - any numerical value that is not `0` or `1` will cause undefined behaviour. | | float | floating point number | | color | color (see hint below for color info) | | vec2 | vector with 2 values (float), separated by a space (e.g. `0 0` or `-10.9 99.1`) |