Skip to content

Commit

Permalink
Merge pull request #494 from tkmtnt7000/PR-fix-typo-caced
Browse files Browse the repository at this point in the history
[pr2eus] Fix typo caced -> cached
  • Loading branch information
k-okada committed May 19, 2023
2 parents e1449f5 + b25f1ec commit 8fc634d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pr2eus/robot-interface.l
Original file line number Diff line number Diff line change
Expand Up @@ -781,12 +781,12 @@ Return value is a list of interpolatingp for all controllers, so (null (some #'i
(send self :spin-once))
t)
;;
(:worldcoords () "Returns world coords of robot. This method uses caced data" (send robot :copy-worldcoords))
(:worldcoords () "Returns world coords of robot. This method uses cached data" (send robot :copy-worldcoords))
(:torque-vector
()
"Return torque vector of robot. This method uses caced data"
"Return torque vector of robot. This method uses cached data"
(coerce (send-all (send robot :joint-list) :joint-torque) float-vector))
(:potentio-vector () "Returns current robot angle vector. This method uses caced data" (send robot :angle-vector))
(:potentio-vector () "Returns current robot angle vector. This method uses cached data" (send robot :angle-vector))
(:reference-vector () "Returns reference joint angle vector. This method reads current state." (send self :state-vector :desired))
(:actual-vector () "Returns current robot angle vector. This method reads current state." (send self :state-vector :actual))
(:error-vector () "Returns error vector of the robot. This method reads current state." (send self :state-vector :error))
Expand Down

0 comments on commit 8fc634d

Please sign in to comment.