From 584cb79fd3a9f2014fb0b0eea51ab6041a6e7067 Mon Sep 17 00:00:00 2001 From: danieldouglas92 Date: Wed, 14 Feb 2024 21:16:56 -0600 Subject: [PATCH] Fix typos --- include/world_builder/parameters.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/world_builder/parameters.h b/include/world_builder/parameters.h index ef406ce8c..ef290f826 100644 --- a/include/world_builder/parameters.h +++ b/include/world_builder/parameters.h @@ -107,14 +107,14 @@ namespace WorldBuilder T get(const std::string &name); /** - * A specialized verions of get which can return vecors/arrays. + * A specialized version of get which can return vectors/arrays. * \param name The name of the entry to retrieved */ template std::vector get_vector(const std::string &name); /** - * A specialized verions of get which can return a value at points type. + * A specialized version of get which can return a value at points type. * \param name The name of the entry to retrieved * \param name additional points to be added to the list at either the default value or at the value of a single value array in the list */ @@ -123,7 +123,7 @@ namespace WorldBuilder const std::vector > &addition_points = {}); /** - * A specialized verions of get which can return vecors/arrays. + * A specialized version of get which can return vectors/arrays. * This version is designed for the plugin system. * \param name The name of the entry to retrieved */ @@ -131,14 +131,14 @@ namespace WorldBuilder std::vector get_vector(const std::string &name, std::vector > &, std::vector > &, std::vector > &); /** - * A specialized verions of get which can return unique pointers. + * A specialized version of get which can return unique pointers. * \param name The name of the entry to retrieved */ template std::unique_ptr get_unique_pointer(const std::string &name); /** - * A specialized verions of get which can return unique pointers as an argument + * A specialized version of get which can return unique pointers as an argument * and returns a bool to indicate whether it was successful or not. * Note that this function will erase all information in the vector. * \param name The name of the entry to retrieved @@ -149,7 +149,7 @@ namespace WorldBuilder get_unique_pointers(const std::string &name, std::vector > &vector); /** - * A specialized verions of get which can return shared pointers as an argument + * A specialized version of get which can return shared pointers as an argument * and returns a bool to indicate whether it was successful or not. * Note that this function will erase all information in the vector. * \param name The name of the entry to retrieved