From e556ebd8484daafaa60147ed7985601a21bc3579 Mon Sep 17 00:00:00 2001 From: "piotr.idzik" Date: Tue, 31 Jan 2023 21:00:09 +0100 Subject: [PATCH] docs: add missing slashes --- data_structures/avltree.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data_structures/avltree.cpp b/data_structures/avltree.cpp index 8107eb7a1..19053224a 100644 --- a/data_structures/avltree.cpp +++ b/data_structures/avltree.cpp @@ -6,9 +6,9 @@ * \warning This program is a poor implementation and does not utilize any of * the C++ STL features. */ -#include // for std::max -#include // for std::cout -#include // for std::queue +#include /// for std::max +#include /// for std::cout +#include /// for std::queue using node = struct node { int data;