~ruther/qmk_firmware

e79fb2c26e62b8820c8bdf7e142a605ccefe24ad — shela 5 years ago 3e0f8f9
[Docs] fix indentation (#9491)

1 files changed, 2 insertions(+), 2 deletions(-)

M docs/ja/feature_pointing_device.md
M docs/ja/feature_pointing_device.md => docs/ja/feature_pointing_device.md +2 -2
@@ 32,7 32,7 @@ report_mouse_t (ここでは "mouseReport") が以下のプロパティを持つ

```c
case MS_SPECIAL:
	report_mouse_t currentReport = pointing_device_get_report();
    report_mouse_t currentReport = pointing_device_get_report();
    if (record->event.pressed) {
        currentReport.v = 127;
        currentReport.h = 127;


@@ 42,7 42,7 @@ case MS_SPECIAL:
        currentReport.h = -127;
        currentReport.buttons &= ~MOUSE_BTN1;
    }
	pointing_device_set_report(currentReport);
    pointing_device_set_report(currentReport);
    break;
```