From 121ee14ee2f9744e03a03a76d28a65daba7acf40 Mon Sep 17 00:00:00 2001 From: Alexander Kochetov Date: Thu, 22 Jan 2015 20:14:42 +0300 Subject: [PATCH] Updated README.md --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 172f873..9066a51 100644 --- a/README.md +++ b/README.md @@ -109,6 +109,12 @@ $countries = new Menu(['name' => 'Countries']); $countries->makeRoot(); ``` +The tree will look like this + +``` +- Countries +``` + ### Prepending a node as the first child of another node To prepend a node as the first child of another node @@ -123,7 +129,6 @@ The tree will look like this ``` - Countries - Russia - - Australia ``` ### Appending a node as the last child of another node @@ -139,6 +144,7 @@ The tree will look like this ``` - Countries + - Russia - Australia ```