Skip to content

Commit

Permalink
src: libs: vehicle: ardupilot: Fix typo
Browse files Browse the repository at this point in the history
Missing last-element comma.

Don't know why this is being raised locally by eslint, but not on CI.
  • Loading branch information
rafaellehmkuhl committed Nov 8, 2022
1 parent fb51e57 commit 8186656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/vehicle/ardupilot/ardupilot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ export abstract class ArduPilotVehicle<
this.sendCommandLong(
MavCmd.MAV_CMD_DO_SET_MODE,
MavModeFlag.MAV_MODE_FLAG_CUSTOM_MODE_ENABLED,
Number(mode), // Custom mode, please refer to the individual autopilot specifications for details
Number(mode) // Custom mode, please refer to the individual autopilot specifications for details
)
}
}

0 comments on commit 8186656

Please sign in to comment.