summaryrefslogtreecommitdiffstats
path: root/docs/ja/feature_macros.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/ja/feature_macros.md
parent5b5d74a2677c281d12cd69825d2e252842786667 (diff)
Normalise include statements in core code (#11153)
* Normalise include statements in core code * Missed one
Diffstat (limited to 'docs/ja/feature_macros.md')
-rw-r--r--docs/ja/feature_macros.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/ja/feature_macros.md b/docs/ja/feature_macros.md
index 5fbe36726a..14a58ad244 100644
--- a/docs/ja/feature_macros.md
+++ b/docs/ja/feature_macros.md
@@ -187,7 +187,9 @@ void post_process_record_user(uint16_t keycode, keyrecord_t *record) {
デフォルトでは、QWERTY レイアウトの US キーマップを想定しています; それを変更したい場合(例えば OS がソフトウェア Colemak を使う場合)、キーマップのどこかに以下を含めます:
- #include <sendstring_colemak.h>
+```c
+#include "sendstring_colemak.h"
+```
### メモリ内の文字列