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 typo #677

Merged
merged 2 commits into from Sep 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions roseus/euslisp/roseus.l
Expand Up @@ -281,7 +281,7 @@
(return-from load (load (format nil "~A/~A.so" dir path-name)
:entry (format nil "___~A" path-name)))))
)))
(if (null fullname) ;; when ros::resolve-ros-patch is failed to load
(if (null fullname) ;; when ros::resolve-ros-path is failed to load
(error "file ~s not found" fname))
(apply #'load-org-for-ros fullname args)))

Expand Down Expand Up @@ -428,7 +428,7 @@ always the rank of list is 2"
(ros::ros-error "Could not find ~A~%try rosrun roseus generate-all-msg-srv.sh ~A" manifest pkg)))))

(defun ros::load-ros-package (pkg)
"load reqruied roseus files for given package"
"load required roseus files for given package"
(unless (find-package (string-upcase pkg))
(make-package (string-upcase pkg)))
(when (probe-file (format nil "~A/msg" (ros::find-load-msg-path pkg)))
Expand Down