Skip to content

Commit

Permalink
fix comments.
Browse files Browse the repository at this point in the history
Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>
  • Loading branch information
fujitatomoya committed Apr 7, 2021
1 parent 6b13e0a commit 1bdd193
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions rclcpp/include/rclcpp/node_interfaces/node_graph_interface.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class NodeGraphInterface
const std::string & node_name,
const std::string & namespace_) const = 0;

/// Return a map of existing service client names and types with a specific node.
/// Return a map of existing service names and types with a specific node.
/**
* This function only considers clients - not service servers.
* The returned names are the actual names used and do not have remap rules applied.
Expand All @@ -198,9 +198,9 @@ class NodeGraphInterface
const std::string & node_name,
const std::string & namespace_) const = 0;

/// Return a map of existing publisher topic names to list of topic types for a specific node.
/// Return a map of existing topic names to list of topic types for a specific node.
/**
* This function only considers publications - not subscriptions.
* This function only considers publishers - not subscribers.
* The returned names are the actual names used and do not have remap rules applied.
*
* \param[in] node_name name of the node
Expand All @@ -215,9 +215,9 @@ class NodeGraphInterface
const std::string & namespace_,
bool no_demangle = false) const = 0;

/// Return a map of existing subscriber topic names to list of topic types for a specific node.
/// Return a map of existing topic names to list of topic types for a specific node.
/**
* This function only considers subscriptions - not publications.
* This function only considers subscribers - not publishers.
* The returned names are the actual names used and do not have remap rules applied.
*
* \param[in] node_name name of the node
Expand Down

0 comments on commit 1bdd193

Please sign in to comment.