@@ -25,7 +25,7 @@ namespace srsran {
2525// / \brief Base tensor interface.
2626// / \tparam NDIMS Number of dimensions.
2727// / \tparam Type Type of data to store.
28- // / \tparam Index_type Data type used for representing dimension indexes . It is used in method \ref
28+ // / \tparam Index_type Data type used for representing dimension indices . It is used in method \ref
2929// / get_dimension_size().
3030template <unsigned NDIMS, typename Type, typename Index_type = unsigned >
3131class tensor
@@ -135,7 +135,7 @@ class tensor
135135// / \tparam NDIMS Number of dimensions.
136136// / \tparam Type Type of data to store.
137137// / \tparam MAX_ELEMENTS maximum number of elements.
138- // / \tparam Index_type Data type used for representing dimension indexes . It is used in method \ref
138+ // / \tparam Index_type Data type used for representing dimension indices . It is used in method \ref
139139// / get_dimension_size().
140140template <unsigned NDIMS, typename Type, unsigned MAX_ELEMENTS, typename Index_type = unsigned >
141141class static_tensor : public tensor <NDIMS, Type, Index_type>
@@ -211,7 +211,7 @@ class static_tensor : public tensor<NDIMS, Type, Index_type>
211211// / \brief Dynamic tensor - the dimensions can be resized dynamically.
212212// / \tparam NDIMS Number of dimensions.
213213// / \tparam Type Type of data to store.
214- // / \tparam Index_type Data type used for representing dimension indexes . It is used in method \ref
214+ // / \tparam Index_type Data type used for representing dimension indices . It is used in method \ref
215215// / get_dimension_size().
216216template <unsigned NDIMS, typename Type, typename Index_type = unsigned >
217217class dynamic_tensor : public tensor <NDIMS, Type, Index_type>
0 commit comments