summaryrefslogtreecommitdiff
path: root/docs/config_options.md
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-12-11 13:45:24 +1100
committerGitHub <noreply@github.com>2020-12-11 13:45:24 +1100
commit501f2fdef115314713e94428d409e5c3b5bfc1c2 (patch)
treee454192658ed0000d1d814e2eab492410febe98f /docs/config_options.md
parent5b5d74a2677c281d12cd69825d2e252842786667 (diff)
Normalise include statements in core code (#11153)
* Normalise include statements in core code * Missed one
Diffstat (limited to 'docs/config_options.md')
-rw-r--r--docs/config_options.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/config_options.md b/docs/config_options.md
index 3a4d7c87c5..a3262b418b 100644
--- a/docs/config_options.md
+++ b/docs/config_options.md
@@ -29,7 +29,9 @@ This level contains all of the options for that particular keymap. If you wish t
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:
- #include "config_common.h"
+```c
+#include "config_common.h"
+```
## Hardware Options