Skip to content

Commit

Permalink
fix doxygen problems
Browse files Browse the repository at this point in the history
  • Loading branch information
nkaaf committed Oct 27, 2023
1 parent 6d5049e commit 62e77a6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/AbstractList.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class AbstractList {

public:
/*!
* @copybrief AbstractList::addLast()
* @copydoc AbstractList::addLast()
* @note Alias of addLast().
* @see addLast()
*/
Expand Down Expand Up @@ -154,7 +154,7 @@ class AbstractList {
* @brief Add all entries from the given list to this list at a specified
* index. The original entry at this index, and followings, will be placed
* directly after the entries of the given list.
* @note The elements from the other list, remain untouched.
* @note The elements from the other list, remain untouched.
*
* @param index Index of this list, at which all entries should be added.
* @param list Other list from where to copy the entries.
Expand All @@ -167,7 +167,7 @@ class AbstractList {

/*!
* @brief Add all entries from the given list at the end of the list.
* @note The elements from the other list, remain untouched.
* @note The elements from the other list, remain untouched.
*
* @param list Other list to copy from.
*/
Expand All @@ -177,7 +177,7 @@ class AbstractList {
* @brief Add all entries from an array to this list at a specified index.
* The original entry at this index, and followings, will be placed
* directly after the entries of the given list.
* @note The elements from the other list, remain untouched.
* @note The elements from the other list, remain untouched.
*
* @param index Index of this list, at which all entries should be added.
* @param arr Array.
Expand All @@ -191,10 +191,10 @@ class AbstractList {

/*!
* @brief Add all entries from an array.
* @note The elements from the other list, remain untouched.
* @note The elements from the other list, remain untouched.
*
* @param arr Array.
* @param size Size of array.
* @param arrSize Size of array.
*/
void addAll(T *arr, size_t arrSize) {
for (size_t i = 0; i < arrSize; ++i) {
Expand Down Expand Up @@ -291,7 +291,7 @@ class AbstractList {
virtual void removeLast() { remove(getSize() - 1); }

/*!
* @copybrief AbstractList::clear()
* @copydoc AbstractList::clear()
* @note Alias of clear().
* @see clear()
*/
Expand Down

0 comments on commit 62e77a6

Please sign in to comment.