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