diff options
author | shela <shelaf@users.noreply.github.com> | 2020-06-22 04:03:35 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-21 20:03:35 +0100 |
commit | e79fb2c26e62b8820c8bdf7e142a605ccefe24ad (patch) | |
tree | 58a7a99d5ea963cb4e7ce3c8caceeacda8086f17 | |
parent | 3e0f8f9c8bada31c014c09a61b0c7d21e5614329 (diff) | |
download | qmk_firmware-e79fb2c26e62b8820c8bdf7e142a605ccefe24ad.tar.gz qmk_firmware-e79fb2c26e62b8820c8bdf7e142a605ccefe24ad.zip |
[Docs] fix indentation (#9491)
-rw-r--r-- | docs/ja/feature_pointing_device.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ja/feature_pointing_device.md b/docs/ja/feature_pointing_device.md index 8b26ac102..1d655627d 100644 --- a/docs/ja/feature_pointing_device.md +++ b/docs/ja/feature_pointing_device.md | |||
@@ -32,7 +32,7 @@ report_mouse_t (ここでは "mouseReport") が以下のプロパティを持つ | |||
32 | 32 | ||
33 | ```c | 33 | ```c |
34 | case MS_SPECIAL: | 34 | case MS_SPECIAL: |
35 | report_mouse_t currentReport = pointing_device_get_report(); | 35 | report_mouse_t currentReport = pointing_device_get_report(); |
36 | if (record->event.pressed) { | 36 | if (record->event.pressed) { |
37 | currentReport.v = 127; | 37 | currentReport.v = 127; |
38 | currentReport.h = 127; | 38 | currentReport.h = 127; |
@@ -42,7 +42,7 @@ case MS_SPECIAL: | |||
42 | currentReport.h = -127; | 42 | currentReport.h = -127; |
43 | currentReport.buttons &= ~MOUSE_BTN1; | 43 | currentReport.buttons &= ~MOUSE_BTN1; |
44 | } | 44 | } |
45 | pointing_device_set_report(currentReport); | 45 | pointing_device_set_report(currentReport); |
46 | break; | 46 | break; |
47 | ``` | 47 | ``` |
48 | 48 | ||