summaryrefslogtreecommitdiffstats
path: root/docs/feature_layers.md
diff options
context:
space:
mode:
authorPablo Martínez <58857054+elpekenin@users.noreply.github.com>2023-01-16 10:32:43 +0100
committerGitHub <noreply@github.com>2023-01-16 01:32:43 -0800
commit2bff00e1bad09a57b3a5af214f0d1f8243deaea5 (patch)
treee76e6368115aa9d7f324c89c2e2ffb4e8d840259 /docs/feature_layers.md
parent917d93e968f8a6d99ba7f24bbc6a1f97237dfe56 (diff)
Small doc changes (#19601)
Diffstat (limited to 'docs/feature_layers.md')
-rw-r--r--docs/feature_layers.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/feature_layers.md b/docs/feature_layers.md
index 5ad4005f5d..8effb7125d 100644
--- a/docs/feature_layers.md
+++ b/docs/feature_layers.md
@@ -53,7 +53,7 @@ There are a number of functions (and variables) related to how you can use or ma
|Function |Description |
|----------------------------------------------|---------------------------------------------------------------------------------------------------------|
-| `layer_state_set(layer_mask)` | Directly sets the layer state (recommended, do not use unless you know what you are doing). |
+| `layer_state_set(layer_mask)` | Directly sets the layer state (avoid unless you know what you are doing). |
| `layer_clear()` | Clears all layers (turns them all off). |
| `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. |
@@ -63,7 +63,7 @@ There are a number of functions (and variables) related to how you can use or ma
| `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. |
| `layer_debug(layer_mask)` | Prints out the current bit mask and highest active layer to debugger console. |
-| `default_layer_set(layer_mask)` | Directly sets the default layer state (recommended, do not use unless you know what you are doing). |
+| `default_layer_set(layer_mask)` | Directly sets the default layer state (avoid unless you know what you are doing). |
| `default_layer_or(layer_mask)` | Turns on layers based on matching bits between specifed layer and existing default layer state. |
| `default_layer_and(layer_mask)` | Turns on layers based on matching enabled bits between specifed layer and existing default layer state. |
| `default_layer_xor(layer_mask)` | Turns on layers based on non-matching bits between specifed layer and existing default layer state. |