List:Commits« Previous MessageNext Message »
From:jon Date:July 5 2006 6:25am
Subject:svn commit - mysqldoc@docsrva: r2632 - trunk/ndbapi
View as plain text  
Author: jstephens
Date: 2006-07-05 08:24:59 +0200 (Wed, 05 Jul 2006)
New Revision: 2632

Log:
Misc. minor fixes

Modified:
   trunk/ndbapi/getting-started.xml

Modified: trunk/ndbapi/getting-started.xml
===================================================================
--- trunk/ndbapi/getting-started.xml	2006-07-05 05:30:10 UTC (rev 2631)
+++ trunk/ndbapi/getting-started.xml	2006-07-05 06:24:59 UTC (rev 2632)
@@ -255,7 +255,7 @@
 aclocal
 autoconf
 automake -a -c
-configure --with-mysql=/mysql/prefix/path
+configure --with-mysql=<replaceable>/mysql/prefix/path</replaceable>
 </programlisting>
 
         Normally, this needs to be done only once, after which
@@ -344,6 +344,7 @@
  
     # add regular MySQL C flags
     ADDFLAGS=`$MYSQL_CONFIG --cflags` 
+
     # add NDB API specific C flags
     IBASE=`$MYSQL_CONFIG --include`
     ADDFLAGS="$ADDFLAGS $IBASE/ndb"
@@ -356,9 +357,7 @@
     LDFLAGS="$LDFLAGS "`$MYSQL_CONFIG --libs_r`" -lndbclient -lmystrings"
     
     AC_MSG_RESULT($MYSQL_CONFIG)
-  fi
-
-  
+  fi  
 ])
 </programlisting>
         </para>
@@ -638,7 +637,7 @@
 
           <listitem>
             <para>
-              For a MySQL <literal>UNIQUE</literal> index, both a BTree
+              For a MySQL <literal>UNIQUE</literal> index, both a B-tree
               and a hash index are created. The B-tree index uses the
               MySQL name for the index; the name for the hash index is
               generated by appending '<literal>$unique</literal>' to the
@@ -774,8 +773,9 @@
 
                 <listitem>
                   <para>
-                    256 bytes, if <replaceable>size</replaceable> &lt;=
-                    256
+                    256 bytes, if
+                    <literal><replaceable>size</replaceable> &lt;=
+                      256</literal> 
                   </para>
                 </listitem>
 

Thread
svn commit - mysqldoc@docsrva: r2632 - trunk/ndbapijon5 Jul