From 348678609ec7e9f228ed131e6838d966b7e99d2f Mon Sep 17 00:00:00 2001 From: SK027 Date: Thu, 26 Oct 2023 17:41:22 +0530 Subject: [PATCH] Update XOR_linked_list.c Changed @details to @brief --- data_structures/linked_list/XOR_linked_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.