Merge pull request #226 from vicfryzel/master

Fixing doc typo in ardrone_driver.go saying that backward went forward.
This commit is contained in:
Ron Evans 2015-08-28 14:15:10 -07:00
commit da7adb4d5d
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ func (a *ArdroneDriver) Forward(speed float64) {
a.adaptor().drone.Forward(speed)
}
// Backward causes the drone go forward, controls the pitch.
// Backward causes the drone go backward, controls the pitch.
// speed can be a value from `0.0` to `1.0`.
func (a *ArdroneDriver) Backward(speed float64) {
a.adaptor().drone.Backward(speed)