Skip to content

Commit ab9999a

Browse files
committed
format changes
1 parent 698d753 commit ab9999a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

libtock-sync/interface/servo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ returncode_t libtocksync_servo_angle(uint32_t angle) {
77
if (err != RETURNCODE_SUCCESS) return err;
88

99
return RETURNCODE_SUCCESS;
10-
}
10+
}

libtock-sync/interface/servo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ extern "C" {
77

88
// ## Arguments
99
//
10-
// - `angle`: The angle you want the servo to move.
10+
// - `angle`: The angle in degrees you want the servo to move.
1111
//
1212
// ## Return Value
1313
//

libtock/interface/syscalls/servo_syscalls.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ bool libtock_servo_exists(void) {
88
returncode_t libtock_servo_angle(uint32_t angle) {
99
syscall_return_t cval = command(DRIVER_NUM_SERVO, 1, angle, 0);
1010
return tock_command_return_novalue_to_returncode(cval);
11-
}
11+
}

0 commit comments

Comments
 (0)