From ddf88836a64fc06264fd9ad036a5bbcd6efb0baa Mon Sep 17 00:00:00 2001 From: Tim Stewart Date: Fri, 16 Jun 2023 22:41:20 -0600 Subject: [PATCH 1/2] Changed interverts to inverts --- docs/feature_layers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/feature_layers.md b/docs/feature_layers.md index 697064b49aee..d730d3c1d0db 100644 --- a/docs/feature_layers.md +++ b/docs/feature_layers.md @@ -64,7 +64,7 @@ There are a number of functions (and variables) related to how you can use or ma | `layer_move(layer)` | Turns specified layer on, and all other layers off. | | `layer_on(layer)` | Turns specified layer on, leaves all other layers in existing state. | | `layer_off(layer)` | Turns specified layer off, leaves all other layers in existing state. | -| `layer_invert(layer)` | Interverts/toggles the state of the specified layer | +| `layer_invert(layer)` | Inverts/toggles the state of the specified layer | | `layer_or(layer_mask)` | Turns on layers based on matching bits between specifed layer and existing layer state. | | `layer_and(layer_mask)` | Turns on layers based on matching enabled bits between specifed layer and existing layer state. | | `layer_xor(layer_mask)` | Turns on layers based on non-matching bits between specifed layer and existing layer state. | From 0ecbc41ca35dc2e2162bb6210912909b42a473fc Mon Sep 17 00:00:00 2001 From: Tim Stewart Date: Mon, 26 Jun 2023 23:00:39 -0600 Subject: [PATCH 2/2] fixed spacing issue Co-authored-by: Joel Challis --- docs/feature_layers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/feature_layers.md b/docs/feature_layers.md index d730d3c1d0db..e57642071f4a 100644 --- a/docs/feature_layers.md +++ b/docs/feature_layers.md @@ -64,7 +64,7 @@ There are a number of functions (and variables) related to how you can use or ma | `layer_move(layer)` | Turns specified layer on, and all other layers off. | | `layer_on(layer)` | Turns specified layer on, leaves all other layers in existing state. | | `layer_off(layer)` | Turns specified layer off, leaves all other layers in existing state. | -| `layer_invert(layer)` | Inverts/toggles the state of the specified layer | +| `layer_invert(layer)` | Inverts/toggles the state of the specified layer | | `layer_or(layer_mask)` | Turns on layers based on matching bits between specifed layer and existing layer state. | | `layer_and(layer_mask)` | Turns on layers based on matching enabled bits between specifed layer and existing layer state. | | `layer_xor(layer_mask)` | Turns on layers based on non-matching bits between specifed layer and existing layer state. |