aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlos Vinieratos <pvinis@gmail.com>2019-05-16 17:21:51 +0200
committerDrashna Jaelre <drashna@live.com>2019-05-16 08:21:51 -0700
commitb541369c45f13369c16de1b887f6ca5b7e589e6d (patch)
tree36d4356fc03dc8e3f15f72f3c7924024d8531e7b
parentfc06975fa3ea31049c8a1dc7a42b78b90db1c89b (diff)
downloadqmk_firmware-b541369c45f13369c16de1b887f6ca5b7e589e6d.tar.gz
qmk_firmware-b541369c45f13369c16de1b887f6ca5b7e589e6d.zip
[Docs] Fix typo in Userspace doc (#5871)
* typo * Update docs/feature_userspace.md Co-Authored-By: fauxpark <fauxpark@gmail.com>
-rw-r--r--docs/feature_userspace.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_userspace.md b/docs/feature_userspace.md
index d82d43138..2f119c8bd 100644
--- a/docs/feature_userspace.md
+++ b/docs/feature_userspace.md
@@ -110,7 +110,7 @@ QMK has a bunch of [functions](custom_quantum_functions.md) that have [`_quantum
110However, you can actually add support for keymap version, so that you can use it in both your userspace and your keymap! 110However, you can actually add support for keymap version, so that you can use it in both your userspace and your keymap!
111 111
112 112
113For instance, lets looks at the `layer_state_set_user` function. Lets enable the [Tri Layer State](ref_functions.md#olkb-tri-layers) functionalitly to all of our boards, and then still have your `keymap.c` still able to use this functionality. 113For instance, let's look at the `layer_state_set_user()` function. You can enable the [Tri Layer State](ref_functions.md#olkb-tri-layers) functionality on all of your boards, while also retaining the Tri Layer functionality in your `keymap.c` files.
114 114
115In your `<name.c>` file, you'd want to add this: 115In your `<name.c>` file, you'd want to add this:
116```c 116```c