aboutsummaryrefslogtreecommitdiff
path: root/docs/zh-cn/newbs_testing_debugging.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/zh-cn/newbs_testing_debugging.md
parent5b5d74a2677c281d12cd69825d2e252842786667 (diff)
downloadqmk_firmware-501f2fdef115314713e94428d409e5c3b5bfc1c2.tar.gz
qmk_firmware-501f2fdef115314713e94428d409e5c3b5bfc1c2.zip
Normalise include statements in core code (#11153)
* Normalise include statements in core code * Missed one
Diffstat (limited to 'docs/zh-cn/newbs_testing_debugging.md')
-rw-r--r--docs/zh-cn/newbs_testing_debugging.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/zh-cn/newbs_testing_debugging.md b/docs/zh-cn/newbs_testing_debugging.md
index 4edceee41..38e6346c4 100644
--- a/docs/zh-cn/newbs_testing_debugging.md
+++ b/docs/zh-cn/newbs_testing_debugging.md
@@ -34,7 +34,9 @@ void keyboard_post_init_user(void) {
34 34
35有时用[custom code](custom_quantum_functions.md)发送自定义调试信息很有用. 这么做很简单. 首先在你文件头部包含`print.h`: 35有时用[custom code](custom_quantum_functions.md)发送自定义调试信息很有用. 这么做很简单. 首先在你文件头部包含`print.h`:
36 36
37 #include <print.h> 37```c
38#include "print.h"
39```
38 40
39之后,您可以使用一些不同的打印功能: 41之后,您可以使用一些不同的打印功能:
40 42