@@ -53,7 +53,7 @@ def is_connected(self):
5353 return self .factory .is_connected
5454
5555 def connect (self ):
56- """Connect to ROS master ."""
56+ """Connect to ROS."""
5757 # Don't try to reconnect if already connected.
5858 if self .is_connected or self .is_connecting :
5959 return
@@ -67,7 +67,7 @@ def _unset_connecting_flag(*args):
6767 self .factory .connect ()
6868
6969 def close (self ):
70- """Disconnect from ROS master ."""
70+ """Disconnect from ROS."""
7171 if self .is_connected :
7272 def _wrapper_callback (proto ):
7373 self .emit ('closing' )
@@ -175,7 +175,7 @@ def _wrapper_callback(proto):
175175 self .factory .on_ready (_wrapper_callback )
176176
177177 def send_on_ready (self , message ):
178- """Send message to the ROS Master once the connection is established.
178+ """Send message to ROS once the connection is established.
179179
180180 If a connection to ROS is already available, the message is sent immediately.
181181
@@ -224,7 +224,7 @@ def get_call_results(result_placeholder):
224224 return get_call_results
225225
226226 def call_sync_service (self , message , timeout ):
227- """Send a blocking service request to the ROS Master once the connection is established,
227+ """Send a blocking service request to ROS once the connection is established,
228228 waiting for the result to be return.
229229
230230 If a connection to ROS is already available, the request is sent immediately.
@@ -240,7 +240,7 @@ def call_sync_service(self, message, timeout):
240240 return self .blocking_call_from_thread (get_call_results , timeout )
241241
242242 def call_async_service (self , message , callback , errback ):
243- """Send a service request to the ROS Master once the connection is established.
243+ """Send a service request to ROS once the connection is established.
244244
245245 If a connection to ROS is already available, the request is sent immediately.
246246
0 commit comments