From 01ac96ed00822775630829092544cb79cd0d41ba Mon Sep 17 00:00:00 2001 From: William Woodall Date: Thu, 30 Aug 2018 16:50:39 -0700 Subject: [PATCH 1/3] remove vestigial parameter documentation --- rcl/include/rcl/arguments.h | 1 - 1 file changed, 1 deletion(-) diff --git a/rcl/include/rcl/arguments.h b/rcl/include/rcl/arguments.h index 86d604c3f..8a83ea04b 100644 --- a/rcl/include/rcl/arguments.h +++ b/rcl/include/rcl/arguments.h @@ -271,7 +271,6 @@ rcl_arguments_copy( * Lock-Free | Yes * * \param[in] args The structure to be deallocated. - * \param[in] allocator A valid allocator. * \return `RCL_RET_OK` if the memory was successfully freed, or * \return `RCL_RET_INVALID_ARGUMENT` if any function arguments are invalid, or * \return `RCL_RET_ERROR` if an unspecified error occurs. From c5b943260f307f5724b8dfdbad330978ccec01cc Mon Sep 17 00:00:00 2001 From: William Woodall Date: Thu, 30 Aug 2018 16:52:36 -0700 Subject: [PATCH 2/3] fix parameter name typo --- rcl/include/rcl/remap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcl/include/rcl/remap.h b/rcl/include/rcl/remap.h index 82f639da1..edcb7d47c 100644 --- a/rcl/include/rcl/remap.h +++ b/rcl/include/rcl/remap.h @@ -140,7 +140,7 @@ rcl_ret_t rcl_remap_service_name( const rcl_arguments_t * local_arguments, const rcl_arguments_t * global_arguments, - const char * serivice_name, + const char * service_name, const char * node_name, const char * node_namespace, rcl_allocator_t allocator, From 7720af10a1e2290d2f54aa23c7d1e2e1312a736f Mon Sep 17 00:00:00 2001 From: William Woodall Date: Thu, 30 Aug 2018 16:58:58 -0700 Subject: [PATCH 3/3] small fixup --- rcl_yaml_param_parser/include/rcl_yaml_param_parser/parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcl_yaml_param_parser/include/rcl_yaml_param_parser/parser.h b/rcl_yaml_param_parser/include/rcl_yaml_param_parser/parser.h index c578947b3..9e7d1f2a4 100644 --- a/rcl_yaml_param_parser/include/rcl_yaml_param_parser/parser.h +++ b/rcl_yaml_param_parser/include/rcl_yaml_param_parser/parser.h @@ -40,7 +40,7 @@ void rcl_yaml_node_struct_fini( /// \brief Parse the YAML file, initialize and populate params_st /// \param[in] file_path is the path to the YAML file -/// \param[in/out] params_st points to the populated paramter struct +/// \param[inout] params_st points to the populated paramter struct /// \return true on success and false on failure RCL_YAML_PARAM_PARSER_PUBLIC bool rcl_parse_yaml_file(