From b6e714e063640f2c04f53ebfe858776ebca588de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Tr=C3=A1vn=C3=AD=C4=8Dek?= <jan.travnicek@fit.cvut.cz> Date: Mon, 10 Jan 2022 14:20:49 +0100 Subject: [PATCH] std: fix typo in documentation --- alib2std/src/extensions/container/array.hpp | 2 +- alib2std/src/extensions/container/bitset.hpp | 2 +- alib2std/src/extensions/container/deque.hpp | 2 +- alib2std/src/extensions/container/forward_list.hpp | 2 +- alib2std/src/extensions/container/list.hpp | 2 +- alib2std/src/extensions/container/map.hpp | 2 +- alib2std/src/extensions/container/multimap.hpp | 2 +- alib2std/src/extensions/container/multiset.hpp | 2 +- alib2std/src/extensions/container/pair.hpp | 2 +- alib2std/src/extensions/container/set.hpp | 2 +- alib2std/src/extensions/container/string.hpp | 2 +- alib2std/src/extensions/container/tuple.hpp | 2 +- alib2std/src/extensions/container/unordered_map.hpp | 2 +- alib2std/src/extensions/container/vector.hpp | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/alib2std/src/extensions/container/array.hpp b/alib2std/src/extensions/container/array.hpp index 687a9dae64..d8957da1b1 100644 --- a/alib2std/src/extensions/container/array.hpp +++ b/alib2std/src/extensions/container/array.hpp @@ -54,7 +54,7 @@ namespace ext { * \brief * Class extending the array class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. * - * The class mimics the behavior of the array from the standatd library. + * The class mimics the behavior of the array from the standard library. * * \tparam T the type of values in the array * \tparam N the size of the array diff --git a/alib2std/src/extensions/container/bitset.hpp b/alib2std/src/extensions/container/bitset.hpp index 72237375cf..e0c1c70796 100644 --- a/alib2std/src/extensions/container/bitset.hpp +++ b/alib2std/src/extensions/container/bitset.hpp @@ -29,7 +29,7 @@ namespace ext { * \brief * Class extending the bitset class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. * - * The class mimics the behavior of the bitset from the standatd library. + * The class mimics the behavior of the bitset from the standard library. * * \tparam N the size of the bitset */ diff --git a/alib2std/src/extensions/container/deque.hpp b/alib2std/src/extensions/container/deque.hpp index c846d2a9de..fb423d3a01 100644 --- a/alib2std/src/extensions/container/deque.hpp +++ b/alib2std/src/extensions/container/deque.hpp @@ -30,7 +30,7 @@ namespace ext { * \brief * Class extending the deque class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. * - * The class mimics the behavior of the deque from the standatd library. + * The class mimics the behavior of the deque from the standard library. * * \tparam T the type of values inside the deque * \tparam Alloc the allocator of values of type T diff --git a/alib2std/src/extensions/container/forward_list.hpp b/alib2std/src/extensions/container/forward_list.hpp index eba652c068..73504a95f2 100644 --- a/alib2std/src/extensions/container/forward_list.hpp +++ b/alib2std/src/extensions/container/forward_list.hpp @@ -29,7 +29,7 @@ namespace ext { * \brief * Class extending the forward_list class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. * - * The class mimics the behavior of the forward_list from the standatd library. + * The class mimics the behavior of the forward_list from the standard library. * * \tparam T the type of values inside the forward_list * \tparam Alloc the allocator of values of type T diff --git a/alib2std/src/extensions/container/list.hpp b/alib2std/src/extensions/container/list.hpp index 005d1c5754..4d1994b4c0 100644 --- a/alib2std/src/extensions/container/list.hpp +++ b/alib2std/src/extensions/container/list.hpp @@ -30,7 +30,7 @@ namespace ext { * \brief * Class extending the list class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. * - * The class mimics the behavior of the list from the standatd library. + * The class mimics the behavior of the list from the standard library. * * \tparam T the type of values inside the list * \tparam Alloc the allocator of values of type T diff --git a/alib2std/src/extensions/container/map.hpp b/alib2std/src/extensions/container/map.hpp index 7d663bf99d..c5dd77fcbe 100644 --- a/alib2std/src/extensions/container/map.hpp +++ b/alib2std/src/extensions/container/map.hpp @@ -32,7 +32,7 @@ namespace ext { * \brief * Class extending the map class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. * - * The class mimics the behavior of the map from the standatd library. + * The class mimics the behavior of the map from the standard library. * * \tparam T the type of keys inside the map * \tparam R the type of values inside the map diff --git a/alib2std/src/extensions/container/multimap.hpp b/alib2std/src/extensions/container/multimap.hpp index 71b99b908f..aa4f2a270f 100644 --- a/alib2std/src/extensions/container/multimap.hpp +++ b/alib2std/src/extensions/container/multimap.hpp @@ -32,7 +32,7 @@ namespace ext { * \brief * Class extending the multimap class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. * - * The class mimics the behavior of the multimap from the standatd library. + * The class mimics the behavior of the multimap from the standard library. * * \tparam T the type of keys inside the multimap * \tparam R the type of values inside the multimap diff --git a/alib2std/src/extensions/container/multiset.hpp b/alib2std/src/extensions/container/multiset.hpp index 0613648a58..f7036b1d2b 100644 --- a/alib2std/src/extensions/container/multiset.hpp +++ b/alib2std/src/extensions/container/multiset.hpp @@ -29,7 +29,7 @@ namespace ext { /** * Class extending the multiset class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. * - * The class mimics the behavior of the multiset from the standatd library. + * The class mimics the behavior of the multiset from the standard library. * * \tparam T the type of keys inside the multiset * \tparam Cmp the comparator type used to order keys diff --git a/alib2std/src/extensions/container/pair.hpp b/alib2std/src/extensions/container/pair.hpp index abc38e5178..b693d0d1ba 100644 --- a/alib2std/src/extensions/container/pair.hpp +++ b/alib2std/src/extensions/container/pair.hpp @@ -29,7 +29,7 @@ namespace ext { * \brief * Class extending the pair class from the standard library. Original reason is to allow printing of the pair with overloaded operator <<. * - * The class mimics the behavior of the pair from the standatd library. + * The class mimics the behavior of the pair from the standard library. * * \tparam T the type of the first value inside the pair * \tparam R the type of the second value inside the pair diff --git a/alib2std/src/extensions/container/set.hpp b/alib2std/src/extensions/container/set.hpp index 872ad68fff..5e32cdd6a1 100644 --- a/alib2std/src/extensions/container/set.hpp +++ b/alib2std/src/extensions/container/set.hpp @@ -29,7 +29,7 @@ namespace ext { /** * Class extending the set class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. * - * The class mimics the behavior of the set from the standatd library. + * The class mimics the behavior of the set from the standard library. * * \tparam T the type of keys inside the set * \tparam Cmp the comparator type used to order keys diff --git a/alib2std/src/extensions/container/string.hpp b/alib2std/src/extensions/container/string.hpp index 95d7da9906..f9300d65e7 100644 --- a/alib2std/src/extensions/container/string.hpp +++ b/alib2std/src/extensions/container/string.hpp @@ -30,7 +30,7 @@ namespace ext { /** * Class extending the set class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. * - * The class mimics the behavior of the set from the standatd library. + * The class mimics the behavior of the set from the standard library. * */ class string : public std::string { diff --git a/alib2std/src/extensions/container/tuple.hpp b/alib2std/src/extensions/container/tuple.hpp index d0e2da9b72..34b9322dc5 100644 --- a/alib2std/src/extensions/container/tuple.hpp +++ b/alib2std/src/extensions/container/tuple.hpp @@ -29,7 +29,7 @@ namespace ext { * \brief * Class extending the tuple class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. * - * The class mimics the behavior of the tuple from the standatd library. + * The class mimics the behavior of the tuple from the standard library. * * \tparam Types ... the types inside the tuple */ diff --git a/alib2std/src/extensions/container/unordered_map.hpp b/alib2std/src/extensions/container/unordered_map.hpp index 10d6d06efd..de459963af 100644 --- a/alib2std/src/extensions/container/unordered_map.hpp +++ b/alib2std/src/extensions/container/unordered_map.hpp @@ -30,7 +30,7 @@ namespace ext { * \brief * Class extending the unordered_map class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. * - * The class mimics the behavior of the unordered_map from the standatd library. + * The class mimics the behavior of the unordered_map from the standard library. * * \tparam T the type of keys inside the unordered_map * \tparam R the type of values inside the unordered_map diff --git a/alib2std/src/extensions/container/vector.hpp b/alib2std/src/extensions/container/vector.hpp index bee6bc31f9..dd56a16285 100644 --- a/alib2std/src/extensions/container/vector.hpp +++ b/alib2std/src/extensions/container/vector.hpp @@ -31,7 +31,7 @@ namespace ext { * \brief * Class extending the vector class from the standard library. Original reason is to allow printing of the container with overloaded operator <<. * - * The class mimics the behavior of the vector from the standatd library. + * The class mimics the behavior of the vector from the standard library. * * \tparam T the type of values inside the vector * \tparam Alloc the allocator of values of type T -- GitLab