Skip to content

Commit 08d1ddd

Browse files
committed
adt: fix typos in documentation
1 parent 4b845ad commit 08d1ddd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/srsran/adt/tensor.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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().
3030
template <unsigned NDIMS, typename Type, typename Index_type = unsigned>
3131
class 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().
140140
template <unsigned NDIMS, typename Type, unsigned MAX_ELEMENTS, typename Index_type = unsigned>
141141
class 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().
216216
template <unsigned NDIMS, typename Type, typename Index_type = unsigned>
217217
class dynamic_tensor : public tensor<NDIMS, Type, Index_type>

0 commit comments

Comments
 (0)