Skip to content

Commit a3995ab

Browse files
committed
include/lists.h: doubly
1 parent c957e58 commit a3995ab

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

include/micro-os-plus/utils/lists.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*/
1111

1212
/*
13-
* This library implements several double linked lists, used by some
13+
* This library implements several doubly linked lists, used by some
1414
* µOS++ components to keep track of internal objects; however it is
1515
* generic enough to be useful in other applications too, thus packing
1616
* it as a separate library.
@@ -75,7 +75,7 @@ namespace micro_os_plus::utils
7575

7676
/**
7777
* @ingroup micro-os-plus-utils-lists-double-lists
78-
* @brief A base class for a double linked list.
78+
* @brief A base class for a doubly linked list.
7979
* @headerfile lists.h <micro-os-plus/utils/lists.h>
8080
*
8181
* @details
@@ -214,7 +214,7 @@ namespace micro_os_plus::utils
214214

215215
/**
216216
* @ingroup micro-os-plus-utils-lists-double-lists
217-
* @brief A class for the core of a double linked list (pointers to
217+
* @brief A class for the core of a doubly linked list (pointers to
218218
* neighbours).
219219
* @headerfile lists.h <micro-os-plus/utils/lists.h>
220220
*
@@ -268,7 +268,7 @@ namespace micro_os_plus::utils
268268

269269
/**
270270
* @ingroup micro-os-plus-utils-lists-double-lists
271-
* @brief A class for the core of a statically allocated double linked list
271+
* @brief A class for the core of a statically allocated doubly linked list
272272
* (pointers to neighbours).
273273
* @headerfile lists.h <micro-os-plus/utils/lists.h>
274274
*
@@ -351,7 +351,7 @@ namespace micro_os_plus::utils
351351

352352
/**
353353
* @ingroup micro-os-plus-utils-lists-double-lists
354-
* @brief A class template for a double linked list forward iterator.
354+
* @brief A class template for a doubly linked list forward iterator.
355355
* @headerfile lists.h <micro-os-plus/utils/lists.h>
356356
* @tparam T Type of object returned by the iterator.
357357
* @tparam N Type of intrusive node. Must have the public members
@@ -361,7 +361,7 @@ namespace micro_os_plus::utils
361361
* @details
362362
* This class provides an interface similar to `std::list::iterator`.
363363
*
364-
* In a common double linked list, all types are `double_list_links`.
364+
* In a common doubly linked list, all types are `double_list_links`.
365365
*/
366366
template <class T, class N = T, class U = T>
367367
class double_list_iterator
@@ -448,15 +448,15 @@ namespace micro_os_plus::utils
448448

449449
/**
450450
* @ingroup micro-os-plus-utils-lists-double-lists
451-
* @brief A class template for a double linked list of nodes.
451+
* @brief A class template for a doubly linked list of nodes.
452452
* @headerfile lists.h <micro-os-plus/utils/lists.h>
453453
* @tparam T Type of the elements linked into the list,
454454
* derived from class `double_list_links_base`.
455455
* @tparam L Type of the links node (one of
456456
* `double_list_links` or `static_double_list_links`).
457457
*
458458
* @details
459-
* A double linked list is a pair of head/tail pointers,
459+
* A doubly linked list is a pair of head/tail pointers,
460460
* allowing to iterate over the nodes.
461461
*
462462
* @note
@@ -523,7 +523,7 @@ namespace micro_os_plus::utils
523523
typename links_type::is_statically_allocated;
524524

525525
/**
526-
* @brief Construct a double linked list.
526+
* @brief Construct a doubly linked list.
527527
*/
528528
double_list ();
529529

@@ -865,7 +865,7 @@ namespace micro_os_plus::utils
865865
using difference_type = ptrdiff_t;
866866

867867
/**
868-
* @brief Construct an intrusive double linked list.
868+
* @brief Construct an intrusive doubly linked list.
869869
*/
870870
constexpr intrusive_list ();
871871

0 commit comments

Comments
 (0)