From 4e141cd4e7b349a86915e861ad690c86e9568b27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Mon, 15 Oct 2018 23:31:02 +0100 Subject: [PATCH] Hotfix typo (#19377) * Hotfix typo * fix: code formatting --- .../english/computer-science/data-structures/trees/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/pages/guide/english/computer-science/data-structures/trees/index.md b/client/src/pages/guide/english/computer-science/data-structures/trees/index.md index 6a5aecd17b..79175780fd 100644 --- a/client/src/pages/guide/english/computer-science/data-structures/trees/index.md +++ b/client/src/pages/guide/english/computer-science/data-structures/trees/index.md @@ -80,9 +80,9 @@ A forest is a set of n ≥ 0 disjoint trees. -###Code of a tree node +### Code of a tree node -``` c_cpp +``` c++ struct node { int data; //Data element