@@ -307,14 +307,14 @@ def generate_launch_description():
307
307
DeclareLaunchArgument (
308
308
"alice_robot_ip" ,
309
309
default_value = "192.168.0.101" ,
310
- description = "IP address by which the robot can be reached." ,
310
+ description = "IP address by which alice can be reached." ,
311
311
)
312
312
)
313
313
declared_arguments .append (
314
314
DeclareLaunchArgument (
315
315
"bob_robot_ip" ,
316
316
default_value = "192.168.0.100" ,
317
- description = "IP address by which the robot can be reached." ,
317
+ description = "IP address by which bob can be reached." ,
318
318
)
319
319
)
320
320
@@ -351,29 +351,29 @@ def generate_launch_description():
351
351
DeclareLaunchArgument (
352
352
"alice_use_mock_hardware" ,
353
353
default_value = "false" ,
354
- description = "Start robot with mock hardware mirroring command to its states." ,
354
+ description = "Start alice with mock hardware mirroring command to its states." ,
355
355
)
356
356
)
357
357
declared_arguments .append (
358
358
DeclareLaunchArgument (
359
359
"bob_use_mock_hardware" ,
360
360
default_value = "false" ,
361
- description = "Start robot with mock hardware mirroring command to its states." ,
361
+ description = "Start bob with mock hardware mirroring command to its states." ,
362
362
)
363
363
)
364
364
declared_arguments .append (
365
365
DeclareLaunchArgument (
366
366
"alice_mock_sensor_commands" ,
367
367
default_value = "false" ,
368
- description = "Enable mock command interfaces for sensors used for simple simulations. "
368
+ description = "Enable mock command interfaces for alice's sensors used for simple simulations. "
369
369
"Used only if 'use_mock_hardware' parameter is true." ,
370
370
)
371
371
)
372
372
declared_arguments .append (
373
373
DeclareLaunchArgument (
374
374
"bob_mock_sensor_commands" ,
375
375
default_value = "false" ,
376
- description = "Enable mock command interfaces for sensors used for simple simulations. "
376
+ description = "Enable mock command interfaces for bob's sensors used for simple simulations. "
377
377
"Used only if 'use_mock_hardware' parameter is true." ,
378
378
)
379
379
)
0 commit comments