summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2023-01-31 06:03:30 +1100
committerGitHub <noreply@github.com>2023-01-31 06:03:30 +1100
commitf6dd8dea2e493dc549a60fee99de871c4088d09a (patch)
treef212cc67ebfe337639d5943249d3e0b810c2f97d /docs
parent2d843088a26ee639287d16fbd9ca4c35e18f7b8b (diff)
Remove usages of config_common.h from config.h files. (#19714)
Diffstat (limited to 'docs')
-rw-r--r--docs/config_options.md9
1 files changed, 2 insertions, 7 deletions
diff --git a/docs/config_options.md b/docs/config_options.md
index 7a91160bcd..f8b31ccb5b 100644
--- a/docs/config_options.md
+++ b/docs/config_options.md
@@ -37,12 +37,7 @@ This level contains all of the options for that particular keymap. If you wish t
 
 # The `config.h` File
 
-This is a C header file that is one of the first things included, and will persist over the whole project (if included). Lots of variables can be set here and accessed elsewhere. The `config.h` file shouldn't be including other `config.h` files, or anything besides this:
-
-```c
-#include "config_common.h"
-```
-
+This is a C header file that is one of the first things included, and will persist over the whole project (if included). Lots of variables can be set here and accessed elsewhere. The `config.h` file shouldn't be including other `config.h` files.
 
 ## Hardware Options
 * `#define VENDOR_ID 0x1234`
@@ -329,7 +324,7 @@ There are a few different ways to set handedness for split keyboards (listed in
 
 * `#define SPLIT_USB_TIMEOUT_POLL 10`
   * Poll frequency when detecting master/slave when using `SPLIT_USB_DETECT`
-  
+
 * `#define SPLIT_WATCHDOG_ENABLE`
   * Reboot slave if no communication from master within timeout.
   * Helps resolve issue where both sides detect as slave using `SPLIT_USB_DETECT`