<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -41,7 +41,11 @@ ports 7001 and 7002.&lt;/p&gt;
 
 &lt;h2 id=&quot;schemafiles&quot;&gt;Schema files&lt;/h2&gt;
 
-&lt;p&gt;I'll use the Tigase MySQL schema file as my example schema.&lt;/p&gt;
+&lt;p&gt;I'll use the
+&lt;a href=&quot;http://www.tigase.org/&quot; title=&quot;tigase.org | Open Source and Free (GPLv3) Jabber/XMPP environment.&quot;&gt;Tigase&lt;/a&gt;
+&lt;a href=&quot;http://projects.tigase.org/server/trac/browser/trunk/database/mysql-schema.sql&quot; title=&quot;/trunk/database/mysql-schema.sql - Tigase Server - Trac&quot;&gt;MySQL schema file
+&lt;/a&gt;
+as my example schema.&lt;/p&gt;
 
 &lt;p&gt;The sample data I'll insert into the database, are just made up values
 and probably not even valid from the point of view of Tigase.&lt;/p&gt;
@@ -64,8 +68,9 @@ different &lt;code&gt;server-id&lt;/code&gt;;&lt;/li&gt;
 server.&lt;/li&gt;
 &lt;/ul&gt;
 
-&lt;p&gt;For any mysql command to use a specific server, you just need to
-add a &lt;code&gt;--defaults-file=$HOWTO_DIR/etc/server-1.cnf&lt;/code&gt;.&lt;/p&gt;
+&lt;p&gt;For any MySQL command to use a specific server, you just need to
+add a &lt;code&gt;--defaults-file=$HOWTO_DIR/etc/server-1.cnf&lt;/code&gt; (replace 1 with 2 to work
+on the second server).&lt;/p&gt;
 
 &lt;h2 id=&quot;starttwoservers&quot;&gt;Start two servers&lt;/h2&gt;
 
@@ -96,19 +101,19 @@ mysql --defaults-file=$HOWTO_DIR/etc/server-2.cnf -u root
 &lt;p&gt;&lt;em&gt;Please note&lt;/em&gt; that this procedure did not set a &lt;code&gt;root&lt;/code&gt; account password.
 This means that anybody can connect as &lt;code&gt;root&lt;/code&gt; to your database.&lt;/p&gt;
 
-&lt;p&gt;For production environments it is &lt;em&gt;strongly recommended&lt;/em&gt; that you change
+&lt;p&gt;For production environments it is &lt;strong&gt;strongly recommended&lt;/strong&gt; that you change
 the &lt;code&gt;root&lt;/code&gt; password, and delete the anonymous accounts.&lt;/p&gt;
 
 &lt;p&gt;For our tests purposes, we will not do that.&lt;/p&gt;
 
 &lt;h2 id=&quot;createsampledbwithdataonserver1&quot;&gt;Create sample db with data on server1&lt;/h2&gt;
 
-&lt;p&gt;On server-1, connect as root, and create the user used by the slave:&lt;/p&gt;
+&lt;p&gt;On &lt;code&gt;server-1&lt;/code&gt;, connect as root, and create the user used by the slave:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;mysql --defaults-file=$HOWTO_DIR/etc/server-1.cnf -u root &amp;lt; $HOWTO_DIR/sql/repl_user.sql
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;We will also create the test database, and load our test schema:&lt;/p&gt;
+&lt;p&gt;We will also create the &lt;code&gt;tigasedb&lt;/code&gt; database, and load our test schema:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;mysqladmin --defaults-file=$HOWTO_DIR/etc/server-1.cnf -u root create tigasedb
 mysql --defaults-file=$HOWTO_DIR/etc/server-1.cnf -u root tigasedb &amp;lt; $HOWTO_DIR/sql/tigase-mysql-schema.sql
@@ -125,13 +130,13 @@ insert some data on them to test:&lt;/p&gt;
 &lt;p&gt;We need to obtain the current master replication position, create a
 stable snapshot of the data.&lt;/p&gt;
 
-&lt;p&gt;Connect as root:&lt;/p&gt;
+&lt;p&gt;Connect as &lt;code&gt;root&lt;/code&gt;:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;mysql --defaults-file=$HOWTO_DIR/etc/server-1.cnf -u root tigasedb
 &lt;/code&gt;&lt;/pre&gt;
 
 &lt;p&gt;This connection must be left open for the rest of this procedure. This
-is required to leave the LOCK in place.&lt;/p&gt;
+is required to leave the &lt;code&gt;LOCK&lt;/code&gt; in place.&lt;/p&gt;
 
 &lt;p&gt;Execute the following statements:&lt;/p&gt;
 
@@ -157,8 +162,8 @@ SHOW MASTER STATUS;
           tigasedb &amp;gt; tigasedb_dump.sql
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;Now we need to setup the slave. First, create the tigasedb database and
-load the dump taken on the master:&lt;/p&gt;
+&lt;p&gt;Now we need to setup the slave. First, create the &lt;code&gt;tigasedb&lt;/code&gt; database and
+load the SQL dump from the master:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;mysqladmin --defaults-file=$HOWTO_DIR/etc/server-2.cnf -u root create tigasedb
 mysql --defaults-file=$HOWTO_DIR/etc/server-2.cnf -u root tigasedb &amp;lt; tigasedb_dump.sql
@@ -167,7 +172,7 @@ mysql --defaults-file=$HOWTO_DIR/etc/server-2.cnf -u root tigasedb &amp;lt; tigasedb
 &lt;p&gt;You should have the same data on both servers now.&lt;/p&gt;
 
 &lt;p&gt;To finish the setup, you need to set the other master parameters on the
-slave. Connect as root:&lt;/p&gt;
+slave. Connect as &lt;code&gt;root&lt;/code&gt;:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;mysql --defaults-file=$HOWTO_DIR/etc/server-2.cnf -u root
 &lt;/code&gt;&lt;/pre&gt;
@@ -184,33 +189,34 @@ slave. Connect as root:&lt;/p&gt;
 START SLAVE;
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;You can now end the server 1 session where the LOCK was created.&lt;/p&gt;
+&lt;p&gt;You can now end the server-1 session where the &lt;code&gt;LOCK&lt;/code&gt; was created.&lt;/p&gt;
 
-&lt;p&gt;You should have a proper master/slave relation working between server-1
-and server-2.&lt;/p&gt;
+&lt;p&gt;You should have a proper master/slave relation working between &lt;code&gt;server-1&lt;/code&gt;
+and &lt;code&gt;server-2&lt;/code&gt;.&lt;/p&gt;
 
-&lt;p&gt;If you look at &lt;code&gt;SHOW MASTER STATUS&lt;/code&gt; on server-1 and compare to
+&lt;p&gt;If you look at &lt;code&gt;SHOW MASTER STATUS&lt;/code&gt; on &lt;code&gt;server-1&lt;/code&gt; and compare to
 &lt;code&gt;SHOW SLAVE STATUS\G&lt;/code&gt; (use &lt;code&gt;\G&lt;/code&gt; query terminator for a more useful layout)
-on server-2, you should see the same &lt;code&gt;File&lt;/code&gt; and &lt;code&gt;Position&lt;/code&gt; on server-1
-as &lt;code&gt;Master_Log_File&lt;/code&gt; and &lt;code&gt;Read_Master_Log_Pos&lt;/code&gt; on server-2.&lt;/p&gt;
+on &lt;code&gt;server-2&lt;/code&gt;, you should see the same &lt;code&gt;File&lt;/code&gt; and &lt;code&gt;Position&lt;/code&gt; on &lt;code&gt;server-1&lt;/code&gt;
+as &lt;code&gt;Master_Log_File&lt;/code&gt; and &lt;code&gt;Read_Master_Log_Pos&lt;/code&gt; on &lt;code&gt;server-2&lt;/code&gt;.&lt;/p&gt;
 
 &lt;p&gt;To test, insert a new row in the &lt;code&gt;tig_user&lt;/code&gt; table.&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;INSERT INTO tig_users (uid, user_id) VALUES (3, 'user3'); 
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;If you SELECT * FROM tig_users on server-2, you should see the &lt;code&gt;user3&lt;/code&gt;.&lt;/p&gt;
+&lt;p&gt;If you &lt;code&gt;SELECT * FROM tig_users&lt;/code&gt; on &lt;code&gt;server-2&lt;/code&gt;, you should see the
+&lt;code&gt;user3&lt;/code&gt; row.&lt;/p&gt;
 
 &lt;p&gt;You can also re-check the &lt;code&gt;SHOW MASTER STATUS&lt;/code&gt;/&lt;code&gt;SHOW SLAVE STATUS&lt;/code&gt; and
 compare the &lt;code&gt;File&lt;/code&gt;/&lt;code&gt;Position&lt;/code&gt;.&lt;/p&gt;
 
 &lt;h1 id=&quot;server2asmaster&quot;&gt;Server 2 as Master&lt;/h1&gt;
 
-&lt;p&gt;The last step is to set server 2 as master of server 1.&lt;/p&gt;
+&lt;p&gt;The last step is to set &lt;code&gt;server-2&lt;/code&gt; as master of &lt;code&gt;server-1&lt;/code&gt;.&lt;/p&gt;
 
-&lt;h2 id=&quot;beforeweprocedesomecautions&quot;&gt;Before we procede, some cautions&lt;/h2&gt;
+&lt;h2 id=&quot;beforeweprocedesomenotes&quot;&gt;Before we procede, some notes&lt;/h2&gt;
 
-&lt;p&gt;A master/master setup requires some configuration to make &lt;code&gt;AUTO_INCREMENT&lt;/code&gt;
+&lt;p&gt;A master/master setup requires some configurations to make &lt;code&gt;AUTO_INCREMENT&lt;/code&gt;
 work correctly.&lt;/p&gt;
 
 &lt;p&gt;Our config files already include the proper &lt;code&gt;auto_increment_increment&lt;/code&gt; and
@@ -226,18 +232,18 @@ work correctly.&lt;/p&gt;
 &lt;p&gt;It boils down to this:&lt;/p&gt;
 
 &lt;ul&gt;
-&lt;li&gt;&lt;code&gt;auto_increment_increment&lt;/code&gt; should be equal to the number of masters you have, N;&lt;/li&gt;
-&lt;li&gt;&lt;code&gt;auto_increment_offset&lt;/code&gt; should be different, from 1 to N, on each master.&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;auto_increment_increment&lt;/code&gt; should be equal to the number of masters you have, &lt;code&gt;N&lt;/code&gt;;&lt;/li&gt;
+&lt;li&gt;&lt;code&gt;auto_increment_offset&lt;/code&gt; should be different, from 1 to &lt;code&gt;N&lt;/code&gt;, on each master.&lt;/li&gt;
 &lt;/ul&gt;
 
 &lt;h2 id=&quot;makeserver1slavetoserver2&quot;&gt;Make server 1 slave to server 2&lt;/h2&gt;
 
-&lt;p&gt;You need a replication user on server 2. I'll use the same one:&lt;/p&gt;
+&lt;p&gt;You need a replication user on &lt;code&gt;server-2&lt;/code&gt;. We'll use the same one:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;mysql --defaults-file=$HOWTO_DIR/etc/server-2.cnf -u root &amp;lt; $HOWTO_DIR/sql/repl_user.sql
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;Connect to server 2, lock tables and record the master position:&lt;/p&gt;
+&lt;p&gt;Connect to &lt;code&gt;server-2&lt;/code&gt;, lock tables and record the master position:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;mysql --defaults-file=$HOWTO_DIR/etc/server-2.cnf -u root tigasedb
 
@@ -252,12 +258,12 @@ SHOW MASTER STATUS;
 1 row in set (0.00 sec)
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;Then hop over to server 1, and connect as root:&lt;/p&gt;
+&lt;p&gt;Then hop over to &lt;code&gt;server-1&lt;/code&gt;, and connect as &lt;code&gt;root&lt;/code&gt;:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;mysql --defaults-file=$HOWTO_DIR/etc/server-1.cnf -u root tigasedb
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;Make server 1 a slave with the proper master position:&lt;/p&gt;
+&lt;p&gt;Make &lt;code&gt;server-1&lt;/code&gt; a slave with the proper master position:&lt;/p&gt;
 
 &lt;pre&gt;&lt;code&gt;CHANGE MASTER TO
        MASTER_HOST='127.0.0.1',
@@ -269,24 +275,27 @@ SHOW MASTER STATUS;
 START SLAVE;
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;Release the lock on server 2. The easiest way is just quiting the mysql shell.&lt;/p&gt;
+&lt;p&gt;Release the lock on &lt;code&gt;server-2&lt;/code&gt;. The easiest way is just quiting the
+&lt;code&gt;mysql&lt;/code&gt; shell.&lt;/p&gt;
 
-&lt;p&gt;You should have a proper master/master relation working between server-1
-and server-2.&lt;/p&gt;
+&lt;p&gt;You should have a proper master/master relation working between &lt;code&gt;server-1&lt;/code&gt;
+and &lt;code&gt;server-2&lt;/code&gt;.&lt;/p&gt;
 
-&lt;p&gt;If you look at &lt;code&gt;SHOW MASTER STATUS&lt;/code&gt; on server-2 and compare to
+&lt;p&gt;If you look at &lt;code&gt;SHOW MASTER STATUS&lt;/code&gt; on &lt;code&gt;server-2&lt;/code&gt; and compare to
 &lt;code&gt;SHOW SLAVE STATUS\G&lt;/code&gt; (use &lt;code&gt;\G&lt;/code&gt; query terminator for a more useful layout)
-on server-1, you should see the same &lt;code&gt;File&lt;/code&gt; and &lt;code&gt;Position&lt;/code&gt; on server-2
-as &lt;code&gt;Master_Log_File&lt;/code&gt; and &lt;code&gt;Read_Master_Log_Pos&lt;/code&gt; on server-1.&lt;/p&gt;
+on &lt;code&gt;server-1&lt;/code&gt;, you should see the same &lt;code&gt;File&lt;/code&gt; and &lt;code&gt;Position&lt;/code&gt; on &lt;code&gt;server-2&lt;/code&gt;
+as &lt;code&gt;Master_Log_File&lt;/code&gt; and &lt;code&gt;Read_Master_Log_Pos&lt;/code&gt; on &lt;code&gt;server-1&lt;/code&gt;.&lt;/p&gt;
 
-&lt;p&gt;Do the same procedure inverting server-1 and server-2. You should also
-see equal values.&lt;/p&gt;
+&lt;p&gt;Do the same procedure again, but switch &lt;code&gt;server-1&lt;/code&gt; with &lt;code&gt;server-2&lt;/code&gt;. You
+should also see equal values.&lt;/p&gt;
 
 &lt;h2 id=&quot;finaltests&quot;&gt;Final tests&lt;/h2&gt;
 
-&lt;p&gt;I recommend that you start two new connections, one to server-1 and the other to server-2.&lt;/p&gt;
+&lt;p&gt;I recommend that you start two new connections, one to &lt;code&gt;server-1&lt;/code&gt; and
+the other to &lt;code&gt;server-2&lt;/code&gt;.&lt;/p&gt;
 
-&lt;p&gt;Select, insert, update, delete from each table, and see if everything is working.&lt;/p&gt;
+&lt;p&gt;Select, insert, update, delete from each table, and see if everything
+is working.&lt;/p&gt;
 
 &lt;p&gt;Also try on one of the connections:&lt;/p&gt;
 
@@ -298,7 +307,8 @@ see equal values.&lt;/p&gt;
 &lt;pre&gt;&lt;code&gt;INSERT INTO test_ainc VALUES (null), (null), (null);
 &lt;/code&gt;&lt;/pre&gt;
 
-&lt;p&gt;Do this on both connections and see how the AUTO_INCREMENT columns just work.&lt;/p&gt;
+&lt;p&gt;Do this on both connections and see how the &lt;code&gt;AUTO_INCREMENT&lt;/code&gt; columns
+just work.&lt;/p&gt;
 
 &lt;h1 id=&quot;finalnotes&quot;&gt;Final Notes&lt;/h1&gt;
 </diff>
      <filename>how-to.html</filename>
    </modified>
    <modified>
      <diff>@@ -62,8 +62,9 @@ The following changes where done:
  * `port` and `socket` settings: updated to be different for each
    server.
 
-For any mysql command to use a specific server, you just need to
-add a `--defaults-file=$HOWTO_DIR/etc/server-1.cnf`.
+For any MySQL command to use a specific server, you just need to
+add a `--defaults-file=$HOWTO_DIR/etc/server-1.cnf` (replace 1 with 2 to work
+on the second server).
 
 
 Start two servers
@@ -93,7 +94,7 @@ connecting to each one:
 *Please note* that this procedure did not set a `root` account password.
 This means that anybody can connect as `root` to your database.
 
-For production environments it is *strongly recommended* that you change
+For production environments it is **strongly recommended** that you change
 the `root` password, and delete the anonymous accounts.
 
 For our tests purposes, we will not do that.
@@ -102,11 +103,11 @@ For our tests purposes, we will not do that.
 Create sample db with data on server1
 -------------------------------------
 
-On server-1, connect as root, and create the user used by the slave:
+On `server-1`, connect as root, and create the user used by the slave:
 
     mysql --defaults-file=$HOWTO_DIR/etc/server-1.cnf -u root &lt; $HOWTO_DIR/sql/repl_user.sql
 
-We will also create the test database, and load our test schema:
+We will also create the `tigasedb` database, and load our test schema:
 
     mysqladmin --defaults-file=$HOWTO_DIR/etc/server-1.cnf -u root create tigasedb
     mysql --defaults-file=$HOWTO_DIR/etc/server-1.cnf -u root tigasedb &lt; $HOWTO_DIR/sql/tigase-mysql-schema.sql
@@ -123,12 +124,12 @@ Server 1 as Master
 We need to obtain the current master replication position, create a
 stable snapshot of the data.
 
-Connect as root:
+Connect as `root`:
 
     mysql --defaults-file=$HOWTO_DIR/etc/server-1.cnf -u root tigasedb
 
 This connection must be left open for the rest of this procedure. This
-is required to leave the LOCK in place.
+is required to leave the `LOCK` in place.
 
 Execute the following statements:
 
@@ -152,8 +153,8 @@ Now create a dump of the data in the master:
               --lock-all-tables \
               tigasedb &gt; tigasedb_dump.sql
 
-Now we need to setup the slave. First, create the tigasedb database and
-load the dump taken on the master:
+Now we need to setup the slave. First, create the `tigasedb` database and
+load the SQL dump from the master:
 
     mysqladmin --defaults-file=$HOWTO_DIR/etc/server-2.cnf -u root create tigasedb
     mysql --defaults-file=$HOWTO_DIR/etc/server-2.cnf -u root tigasedb &lt; tigasedb_dump.sql
@@ -161,7 +162,7 @@ load the dump taken on the master:
 You should have the same data on both servers now.
 
 To finish the setup, you need to set the other master parameters on the
-slave. Connect as root:
+slave. Connect as `root`:
 
     mysql --defaults-file=$HOWTO_DIR/etc/server-2.cnf -u root
 
@@ -176,21 +177,22 @@ And setup the master link:
            MASTER_LOG_POS=4514;
     START SLAVE;
 
-You can now end the server 1 session where the LOCK was created.
+You can now end the server-1 session where the `LOCK` was created.
 
-You should have a proper master/slave relation working between server-1
-and server-2.
+You should have a proper master/slave relation working between `server-1`
+and `server-2`.
 
-If you look at `SHOW MASTER STATUS` on server-1 and compare to
+If you look at `SHOW MASTER STATUS` on `server-1` and compare to
 `SHOW SLAVE STATUS\G` (use `\G` query terminator for a more useful layout)
-on server-2, you should see the same `File` and `Position` on server-1
-as `Master_Log_File` and `Read_Master_Log_Pos` on server-2.
+on `server-2`, you should see the same `File` and `Position` on `server-1`
+as `Master_Log_File` and `Read_Master_Log_Pos` on `server-2`.
 
 To test, insert a new row in the `tig_user` table.
 
     INSERT INTO tig_users (uid, user_id) VALUES (3, 'user3'); 
 
-If you SELECT * FROM tig_users on server-2, you should see the `user3`.
+If you `SELECT * FROM tig_users` on `server-2`, you should see the
+`user3` row.
 
 You can also re-check the `SHOW MASTER STATUS`/`SHOW SLAVE STATUS` and
 compare the `File`/`Position`.
@@ -199,13 +201,13 @@ compare the `File`/`Position`.
 Server 2 as Master
 ==================
 
-The last step is to set server 2 as master of server 1.
+The last step is to set `server-2` as master of `server-1`.
 
 
-Before we procede, some cautions
---------------------------------
+Before we procede, some notes
+-----------------------------
 
-A master/master setup requires some configuration to make `AUTO_INCREMENT`
+A master/master setup requires some configurations to make `AUTO_INCREMENT`
 work correctly.
 
 Our config files already include the proper `auto_increment_increment` and
@@ -218,18 +220,18 @@ You should read:
 
 It boils down to this:
 
- * `auto_increment_increment` should be equal to the number of masters you have, N;
- * `auto_increment_offset` should be different, from 1 to N, on each master.
+ * `auto_increment_increment` should be equal to the number of masters you have, `N`;
+ * `auto_increment_offset` should be different, from 1 to `N`, on each master.
 
 
 Make server 1 slave to server 2
 -------------------------------
 
-You need a replication user on server 2. I'll use the same one:
+You need a replication user on `server-2`. We'll use the same one:
 
     mysql --defaults-file=$HOWTO_DIR/etc/server-2.cnf -u root &lt; $HOWTO_DIR/sql/repl_user.sql
 
-Connect to server 2, lock tables and record the master position:
+Connect to `server-2`, lock tables and record the master position:
 
     mysql --defaults-file=$HOWTO_DIR/etc/server-2.cnf -u root tigasedb
     
@@ -243,11 +245,11 @@ Connect to server 2, lock tables and record the master position:
     +---------------------------+----------+--------------+------------------+
     1 row in set (0.00 sec)
 
-Then hop over to server 1, and connect as root:
+Then hop over to `server-1`, and connect as `root`:
 
     mysql --defaults-file=$HOWTO_DIR/etc/server-1.cnf -u root tigasedb
 
-Make server 1 a slave with the proper master position:
+Make `server-1` a slave with the proper master position:
 
     CHANGE MASTER TO
            MASTER_HOST='127.0.0.1',
@@ -258,26 +260,29 @@ Make server 1 a slave with the proper master position:
            MASTER_LOG_POS=482;
     START SLAVE;
 
-Release the lock on server 2. The easiest way is just quiting the mysql shell.
+Release the lock on `server-2`. The easiest way is just quiting the
+`mysql` shell.
 
-You should have a proper master/master relation working between server-1
-and server-2.
+You should have a proper master/master relation working between `server-1`
+and `server-2`.
 
-If you look at `SHOW MASTER STATUS` on server-2 and compare to
+If you look at `SHOW MASTER STATUS` on `server-2` and compare to
 `SHOW SLAVE STATUS\G` (use `\G` query terminator for a more useful layout)
-on server-1, you should see the same `File` and `Position` on server-2
-as `Master_Log_File` and `Read_Master_Log_Pos` on server-1.
+on `server-1`, you should see the same `File` and `Position` on `server-2`
+as `Master_Log_File` and `Read_Master_Log_Pos` on `server-1`.
 
-Do the same procedure inverting server-1 and server-2. You should also
-see equal values.
+Do the same procedure again, but switch `server-1` with `server-2`. You
+should also see equal values.
 
 
 Final tests
 -----------
 
-I recommend that you start two new connections, one to server-1 and the other to server-2.
+I recommend that you start two new connections, one to `server-1` and
+the other to `server-2`.
 
-Select, insert, update, delete from each table, and see if everything is working.
+Select, insert, update, delete from each table, and see if everything
+is working.
 
 Also try on one of the connections:
 
@@ -287,7 +292,8 @@ And then insert rows with:
 
     INSERT INTO test_ainc VALUES (null), (null), (null);
 
-Do this on both connections and see how the AUTO_INCREMENT columns just work.
+Do this on both connections and see how the `AUTO_INCREMENT` columns
+just work.
 
 
 Final Notes</diff>
      <filename>how-to.markdown</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>edf3cb9565b598ecc480120449dfe6f40a28a600</id>
    </parent>
  </parents>
  <author>
    <name>Pedro Melo</name>
    <email>melo@simplicidade.org</email>
  </author>
  <url>http://github.com/melo/mysql-master-master-how-to/commit/f9a717bbebc74c54a652db925e7cf3e49bc15656</url>
  <id>f9a717bbebc74c54a652db925e7cf3e49bc15656</id>
  <committed-date>2008-06-27T04:07:20-07:00</committed-date>
  <authored-date>2008-06-27T04:07:20-07:00</authored-date>
  <message>Tweaks all over, minor ajustments of typography

Updated HTML copy.

Signed-off-by: Pedro Melo &lt;melo@simplicidade.org&gt;</message>
  <tree>b0a71bb0495a1c73c3448339dda8418353d44cd2</tree>
  <committer>
    <name>Pedro Melo</name>
    <email>melo@simplicidade.org</email>
  </committer>
</commit>
