@@ -118,7 +118,7 @@ class AbstractList {
118118
119119 public:
120120 /* !
121- * @copybrief AbstractList::addLast()
121+ * @copydoc AbstractList::addLast()
122122 * @note Alias of addLast().
123123 * @see addLast()
124124 */
@@ -154,7 +154,7 @@ class AbstractList {
154154 * @brief Add all entries from the given list to this list at a specified
155155 * index. The original entry at this index, and followings, will be placed
156156 * directly after the entries of the given list.
157- * @note The elements from the other list, remain untouched.
157+ * @note The elements from the other list, remain untouched.
158158 *
159159 * @param index Index of this list, at which all entries should be added.
160160 * @param list Other list from where to copy the entries.
@@ -167,7 +167,7 @@ class AbstractList {
167167
168168 /* !
169169 * @brief Add all entries from the given list at the end of the list.
170- * @note The elements from the other list, remain untouched.
170+ * @note The elements from the other list, remain untouched.
171171 *
172172 * @param list Other list to copy from.
173173 */
@@ -177,7 +177,7 @@ class AbstractList {
177177 * @brief Add all entries from an array to this list at a specified index.
178178 * The original entry at this index, and followings, will be placed
179179 * directly after the entries of the given list.
180- * @note The elements from the other list, remain untouched.
180+ * @note The elements from the other list, remain untouched.
181181 *
182182 * @param index Index of this list, at which all entries should be added.
183183 * @param arr Array.
@@ -191,10 +191,10 @@ class AbstractList {
191191
192192 /* !
193193 * @brief Add all entries from an array.
194- * @note The elements from the other list, remain untouched.
194+ * @note The elements from the other list, remain untouched.
195195 *
196196 * @param arr Array.
197- * @param size Size of array.
197+ * @param arrSize Size of array.
198198 */
199199 void addAll (T *arr, size_t arrSize) {
200200 for (size_t i = 0 ; i < arrSize; ++i) {
@@ -291,7 +291,7 @@ class AbstractList {
291291 virtual void removeLast () { remove (getSize () - 1 ); }
292292
293293 /* !
294- * @copybrief AbstractList::clear()
294+ * @copydoc AbstractList::clear()
295295 * @note Alias of clear().
296296 * @see clear()
297297 */
0 commit comments