From c420cf11eed3a75c4b2fd5012b93435125546031 Mon Sep 17 00:00:00 2001
From: Konstantin Osipov <kostja@tarantool.org>
Date: Tue, 22 Jul 2014 15:48:16 +0400
Subject: [PATCH] Correct ports (admin = 3313, listen = 3301)

---
 doc/user/server-administration.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/user/server-administration.xml b/doc/user/server-administration.xml
index 6bfa7085fc..64b3957646 100644
--- a/doc/user/server-administration.xml
+++ b/doc/user/server-administration.xml
@@ -161,7 +161,7 @@ Here is an example of an interactive-mode tarantool client session:
 <programlisting>
 <prompt>$ </prompt>tarantool
                 [ tarantool will display an introductory message including version number here ]
-tarantool> box.cfg{admin=3301, listen=3313}
+tarantool> box.cfg{admin=3313, listen=3301}
                 [ tarantool will display configuration information here ]
 tarantool> s = box.schema.create_space('tester')
                 [ tarantool may display an in-progress message here ]
@@ -189,10 +189,10 @@ Explanatory notes about what tarantool displayed in the above example:
 </para>
 <para>
 * Many requests return typed objects.
-    In the case of "box.cfg{admin=3301, listen=3313}",
+    In the case of "box.cfg{admin=3313, listen=3301}",
     this result is displayed on the screen.
     If the request had assigned the result to a variable, for example
-    "c = box.cfg{admin=3301, listen=3313}", then
+    "c = box.cfg{admin=3313, listen=3301}", then
     the result would not have been displayed on the screen.
 </para>
 <para>
-- 
GitLab