diff --git a/data_structures/linked_list/XOR_linked_list.c b/data_structures/linked_list/XOR_linked_list.c index ad14b98798..cca5d6866a 100644 --- a/data_structures/linked_list/XOR_linked_list.c +++ b/data_structures/linked_list/XOR_linked_list.c @@ -7,7 +7,7 @@ /** * @file * - * @details + * @brief * [XOR List](https://en.wikipedia.org/wiki/XOR_linked_list) combines the properties of a * circular doubly linked list and XOR pointers to save memory and enhance performance. * Each node contains an XOR of the addresses of the previous and next nodes.