Browse Source

[Docs] fix indentation (#9491)

shela 6 years ago
parent
commit
e79fb2c26e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/ja/feature_pointing_device.md

+ 2 - 2
docs/ja/feature_pointing_device.md

@@ -32,7 +32,7 @@ report_mouse_t (ここでは "mouseReport") が以下のプロパティを持つ
 
 
 ```c
 ```c
 case MS_SPECIAL:
 case MS_SPECIAL:
-	report_mouse_t currentReport = pointing_device_get_report();
+    report_mouse_t currentReport = pointing_device_get_report();
     if (record->event.pressed) {
     if (record->event.pressed) {
         currentReport.v = 127;
         currentReport.v = 127;
         currentReport.h = 127;
         currentReport.h = 127;
@@ -42,7 +42,7 @@ case MS_SPECIAL:
         currentReport.h = -127;
         currentReport.h = -127;
         currentReport.buttons &= ~MOUSE_BTN1;
         currentReport.buttons &= ~MOUSE_BTN1;
     }
     }
-	pointing_device_set_report(currentReport);
+    pointing_device_set_report(currentReport);
     break;
     break;
 ```
 ```