From 18c4a79f7bb5d4aa9ab38e26b66cb03455ef8f7e Mon Sep 17 00:00:00 2001
From: ocelot-inc <pgulutzan@ocelot.ca>
Date: Tue, 18 Nov 2014 15:26:26 -0700
Subject: [PATCH] Six spelling errors

---
 doc/user/data-model.xml        | 2 +-
 doc/user/databases.xml         | 4 ++--
 doc/user/replication.xml       | 2 +-
 doc/user/stored-procedures.xml | 2 +-
 doc/user/tutorial.xml          | 2 +-
 5 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/doc/user/data-model.xml b/doc/user/data-model.xml
index 70d9559794..3f55387ff8 100644
--- a/doc/user/data-model.xml
+++ b/doc/user/data-model.xml
@@ -161,7 +161,7 @@ The syntax details for defining spaces and indexes are in section
     Storage is variable-length, so the smallest number requires only one byte but the largest number requires nine bytes.
     </para>
     <para>
-    A "string" a variable-length sequence of bytes, usually represented with alphanumeric
+    A "string" is a variable-length sequence of bytes, usually represented with alphanumeric
     characters inside single quotes.
     </para>
     <para>
diff --git a/doc/user/databases.xml b/doc/user/databases.xml
index 2849948c68..5797bacc06 100644
--- a/doc/user/databases.xml
+++ b/doc/user/databases.xml
@@ -98,7 +98,7 @@
   
     The contents of the <code>box</code> library can be inspected at runtime with
     <code>box</code>, with no arguments.
-    The packages inside the box library are: schema, box.tuple, box.space, box.index, 
+    The packages inside the box library are: box.schema, box.tuple, box.space, box.index, 
     net.box, box.cfg, box.info, box.slab, box.stat.
     Every package contains one or more Lua functions. A few packages contain members as well as functions.
     The functions allow data definition (create alter drop), data manipulation (insert delete update select replace),
@@ -1621,7 +1621,7 @@ The result will be a table of tuples and will look like this:
 
     <varlistentry>
         <term>
-         <emphasis role="lua">box.space.<replaceable>space-name</replaceable>.auto_increment{<replaceable>field-value [, field-value ...]</replaceable>}</emphasis>
+         <emphasis role="lua">box.space.<replaceable>space-name</replaceable>:auto_increment{<replaceable>field-value [, field-value ...]</replaceable>}</emphasis>
         </term>
         <listitem>
             <para>
diff --git a/doc/user/replication.xml b/doc/user/replication.xml
index 2d6a9273d2..e2074ac7af 100644
--- a/doc/user/replication.xml
+++ b/doc/user/replication.xml
@@ -35,7 +35,7 @@ identifier which is unique within the cluster, known as the
     data-change request such as INSERT or UPDATE or DELETE, and is assigned
     a monotonically growing log sequence number (LSN).
     In essence, Tarantool replication is row-based:
-    each data change command is fully deterministic and operate
+    each data change command is fully deterministic and operates
     on a single tuple.
   </para>
   <para>
diff --git a/doc/user/stored-procedures.xml b/doc/user/stored-procedures.xml
index ff0306dd71..140e5ba95c 100644
--- a/doc/user/stored-procedures.xml
+++ b/doc/user/stored-procedures.xml
@@ -164,7 +164,7 @@ This differs from the original Lua interpreter from
 <link xlink:href="http://www.puc-rio.br/index.html">Pontifícia Universidade Católica do Rio de Janeiro</link>
 ("RIO-PUC" <link xlink:href="http://www.lua.org/">Lua</link>) 
 because the JIT stands for "Just In Time" compiling, that
-is, it can compile some Lua code into machine executable form the
+is, it can compile some Lua code into machine executable form
 after a few executions of the code.
 The result is that some
 loops will run as quickly as an equivalent C program.
diff --git a/doc/user/tutorial.xml b/doc/user/tutorial.xml
index dfe81560af..70a83172fb 100644
--- a/doc/user/tutorial.xml
+++ b/doc/user/tutorial.xml
@@ -621,7 +621,7 @@ The server name is <computeroutput><filename>tarantool</filename></computeroutpu
   <command>~/tarantool/src/tarantool</command> </userinput></programlisting>
 </para>
 <para>
-3. Try these requests:<programlisting><userinput>sconsole = require('console')
+3. Try these requests:<programlisting><userinput>console = require('console')
 console.connect('localhost:3301')
 box.space.tester:select{2}</userinput></programlisting>
 </para>
-- 
GitLab