Skip to content
Snippets Groups Projects
Commit c420cf11 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Correct ports (admin = 3313, listen = 3301)

parent 52e55aa1
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment