Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix joint command names in manpage #71

Merged
merged 1 commit into from
Jul 30, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions doc/Manpage.joint.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@

### Name

Spur_get_joint_ang, Spur_get_joint_vel, Spur_get_joint_torque
YP_get_joint_ang, YP_get_joint_vel, YP_get_joint_torque

### Synopsis

```c
double Spur_get_joint_ang(int id, double *a);
double Spur_get_joint_vel(int id, double *v);
double Spur_get_joint_torque(int id, double *t);
double YP_get_joint_ang(int id, double *a);
double YP_get_joint_vel(int id, double *v);
double YP_get_joint_torque(int id, double *t);
```

### Description
Expand All @@ -34,13 +34,13 @@ On error, -1 is returned.

### Name

Spur_set_joint_vel, Spur_set_joint_accel
YP_set_joint_vel, YP_set_joint_accel

### Synopsis

```c
int Spur_set_joint_vel(int id, double v);
int Spur_set_joint_accel(int id, double a);
int YP_set_joint_vel(int id, double v);
int YP_set_joint_accel(int id, double a);
```

### Description
Expand All @@ -62,7 +62,7 @@ On error, -1 is returned.

### Name

Spur_joint_ang, Spur_joint_vel, Spur_joint_torque, Spur_joint_ang_vel
YP_joint_ang, YP_joint_vel, YP_joint_torque, YP_joint_ang_vel

### Synopsis

Expand Down